Ong York Mei 23.Jun.10 04:43 AM a Web browser Lotus Workflow Architect7.0Windows XP
Hey all,
I need help so badly, despite that I have posted the similar question in the forum before.
I need to customise my own email content in all the email notification, I look in OS Application Events and in this, QueryInboxMailNotication. I try to put in the code below for testing:
Private Function QueryInboxMailNotification_(Continue As Integer, Recipients As Variant, MailDocument As Notesdocument, RTFItem As Variant, CoverDocument As NotesDocument, MainDocument As Notesdocument)
Continue=False
Dim RTX As NotesRichTextItem
Dim doc As New notesDocument(MailDocument.ParentDatabase)
doc.Form = "Memo"
doc.Subject = " Subject goes here"
doc.SendTo = Recipients
Set RTX = doc.CreateRichTextItem("Body")
Call RTX.AppendText(" Text goes here ")
Call doc.Send( False )
End Function
But when I test run the workflow, the above coding seems like dint being executed! Is there anywhere I must do the changes?
Will highly appreciate if anyone could help me!