View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
sachin ahuja sachin ahuja is offline
external usenet poster
 
Posts: 12
Default 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,