Send outlook-email from Access using template (oft)

  • Thread starter Thread starter Filips Benoit
  • Start date Start date
F

Filips Benoit

Dear All,

How should i send an outlook-email from access using a template (oft) ?

Thanks
 
Write Access VBA code invoking the Application.CreateItemFromTemplate method from the Outlook object model:

Set ol = CreateObject("Outlook.Application")
Set msg = ol.CreateItemFromTemplate("C:\Data\MyTemplate.oft")
msg.Display
' or other code to work with msg
 
Back
Top