Send emails on behalf of a group - VBA - Lotus Notes
Hi,
I am using below code to send email on behalf of a group using OUTLOOK, I want to do send same mail using Lotus Notes.
Set Outluk = CreateObject("Outlook.Application")
Outluk.ActiveExplorer.Activate
Set objMail = Outluk.CreateItem(olMailItem)
objMail.Display
objMail.TO = "
objMail.Subject ="Notification Mail "
objMail.SentOnBehalfOfName = "
objMail.Send
Set Outluk = Nothing
Please help me to do same task with Lotus Notes.
Thanks,
|