Author Topic: CC Pulse Action Item Sending Email  (Read 11217 times)

prashanth

  • Guest
CC Pulse Action Item Sending Email
« on: June 13, 2007, 02:04:11 AM »

Hi Guys

I am trying to use Send Email Action Item from Action Wizard along with a Threshold.Already in CCpulse we have SendEmailwithCDO.It is using my outlook express to send the email and everytime when it asks me with message box R u sure u want to send Email.I dont want that everytime i click on Yes to send Email. I want that it should automatically send a Email when ever that threshold is met without prompting me.

I want that that email should be send to multiple email addresses.Can u guys send me VB script coding to send email to multiple Recepitients.

Help Me OUT





Offline CTIgem

  • Sr. Member
  • ****
  • Posts: 273
  • Karma: 0
Re: CC Pulse Action Item Sending Email
« Reply #1 on: June 14, 2007, 12:15:52 PM »
  • Best Answer
  • I just worked on this.
    Use vbSendmail, search on yahoo, you'll hit the link.

    Offline mark

    • Sr. Member
    • ****
    • Posts: 415
    • Karma: 2
    Re: CC Pulse Action Item Sending Email
    « Reply #2 on: August 30, 2007, 02:21:36 PM »
  • Best Answer
  • I might be being a muppet (more than likely!), but can you give me more info on using vbsendmail for ccpulse actions. Would like to use it!

    Mark

    Offline CTIgem

    • Sr. Member
    • ****
    • Posts: 273
    • Karma: 0
    Re: CC Pulse Action Item Sending Email
    « Reply #3 on: September 04, 2007, 08:06:47 PM »
  • Best Answer
  • Here you go...

    Set poSendMail = CreateObject("vbSendMail.clsSendMail")
              poSendMail.SMTPHost = "your snmp server goes here"
              poSendMail.From = "your from addr"
              poSendMail.FromDisplayName = "whatever"
              poSendMail.Recipient = "list of people's addr"
              poSendMail.RecipientDisplayName = "whatever"
              poSendMail.ReplyToAddress = ""
              poSendMail.Subject = "Alarm notification from CCPulse"
              poSendMail.Attachment = ""
              poSendMail.Message = "Calls are waiting in the Queue"
              poSendMail.Send
              Set poSendMail = Nothing

    BTW, I just implmented with JavaMail becauses security concerns with VbsendMail.

    Offline mark

    • Sr. Member
    • ****
    • Posts: 415
    • Karma: 2
    Re: CC Pulse Action Item Sending Email
    « Reply #4 on: September 05, 2007, 07:41:26 AM »
  • Best Answer
  • Thanks, getting an activeX error regarding creating object vbSendMail.clsSendMail.
    I have registered the .dll

    Mark

    Offline mark

    • Sr. Member
    • ****
    • Posts: 415
    • Karma: 2
    Re: CC Pulse Action Item Sending Email
    « Reply #5 on: September 05, 2007, 08:08:22 AM »
  • Best Answer
  • Yes, I was being a muppet, completely fogetting that the dll and mswinsck.ocx needed to be registered on the citrix server that ccpulse was being delivered by!

    Which reminds me, really need to install locally!

    Visitor319

    • Guest
    Overview
    « Reply #6 on: September 26, 2007, 10:45:10 PM »
  • Best Answer
  • I have visited your site 934-times

    Visitor453

    • Guest
    Overview
    « Reply #7 on: September 26, 2007, 10:46:39 PM »
  • Best Answer
  • I have visited your site 136-times

    Offline S

    • Full Member
    • ***
    • Posts: 135
    • Karma: 1
    CC Pulse Action Item - Sending Email
    « Reply #8 on: September 03, 2008, 07:47:06 PM »
  • Best Answer
  • Did anyone try this on 7.2 above versions or even with javamail? please share it with me.