Hi all,
I need to send an email using the Outlook OLE connector.
It runs well but I would like use the ccn in order that the user that will receive the email can't see any other email when I send to multiple recipients.
Is there a way to do this ?
This is my current code:
oOutLook := CreateObject( "Outlook.Application" )
oMailItem := oOutLook:CreateItem( 0 )
oRecip := oMailItem:Recipients
oRecip:Add( "test@softwarexp.co.uk" )
oMailItem:Subject := "Subject"
oMailItem:Body := "Mail test"
oMailItem:Send()
Other question:
as I know it isn't possibile to use the ccn using MAPI (Fivewin tMail class). Isn't it ?
Thanks in advance.