- Create threshold using CCPulse+ threshold wizard
- Download 'vbSendEmail.dll' from http://www.freevbcode.com/ShowCode.Asp?ID=109 and copy it in CCPulse+ folder (typically, 'GCTI\CCPulse+')
- Using command prompt, navigate to CCPulse+ folder and register dll using the following command
regsvr32 vbSendMail.dll
- Create action script as below
1: Set poSendMail = CreateObject("vbSendMail.clsSendMail")
2: poSendMail.SMTPHost = "<your smtp server here>"
3: poSendMail.From = "<from Address>"
4: poSendMail.FromDisplayName = "<From>"
5: poSendMail.Recipient = "<To Address>"
6: poSendMail.RecipientDisplayName = "<To Name>"
7: poSendMail.ReplyToAddress = "<Reply Address>"
8: poSendMail.Subject = "CCPulse Notification"
9: poSendMail.Attachment = ""
10: poSendMail.Message = "<your message>"
11: poSendMail.Send
12: Set poSendMail = Nothing
No comments:
Post a Comment