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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top