Genesys CTI User Forum

Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: Cuneyt97 on January 01, 1970, 12:00:00 AM

Title: Send email to lotus from CCPulse7
Post by: Cuneyt97 on January 01, 1970, 12:00:00 AM
Hi
I've vb code as an action code which sends email to the receipient such as like this.


SendMail

Sub SendMail

Dim sDatabase, sServer,Session ,DataBase ,Document

sServer = "OPCDMN1/ABC"
sDatabase = "mail\john.nsf"


Set Session = CreateObject("Notes.NotesSession")


Set DataBase = Session.GETDATABASE(sServer, sDatabase)


Set Document = DataBase.CREATEDOCUMENT()

Document.Form = "Memo"


Document.SendTo = "sentadress@domain.com"
Document.Subject = "Test OLE automation"
Document.Body = "Testing OLE"
Document.From = Session.COMMONUSERNAME
Document.SaveMessageOnSend = True
Document.Send True

end sub


But what i want to do is, i want to send the CCPulse real time report of agents at specific time such as 5:00 PM
How can i send the report of agent by email to him or her or any adress?
Can anybody help me?
Title: Send email to lotus from CCPulse7
Post by: henrick on January 01, 1970, 12:00:00 AM
Why do not you use for this CCAnalyzer?