View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gord Dibben[_2_] Gord Dibben[_2_] is offline
external usenet poster
 
Posts: 621
Default Send emails on behalf of a group - VBA - Lotus Notes

See Ron de Bruin's site for Lotus Notes coding.

http://www.rondebruin.nl/win/s1/notes/notes.htm

Gord


On Mon, 11 Aug 2014 03:19:31 -0700 (PDT), sachin ahuja
wrote:

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,