J
judith
I am trying to send some information from Access in an email and need some
code to open a new outlook template to paste the information into. I have
saved the template as an .oft file could you help me with the code and saved
the Access information in a temporary word document
Dim olApp As Outlook.Application
Dim msMailItem As MailItem
' Create a new instance of Outlook
Set olApp = New Outlook.Application
' Create a new mail item
Set msMailItem = olApp.CreateItem(olMailItem)
How do I specify a template please. And can I then copy and paste
information from a temporary word document I have created into the body of
the email to retain the format.
Thanks
code to open a new outlook template to paste the information into. I have
saved the template as an .oft file could you help me with the code and saved
the Access information in a temporary word document
Dim olApp As Outlook.Application
Dim msMailItem As MailItem
' Create a new instance of Outlook
Set olApp = New Outlook.Application
' Create a new mail item
Set msMailItem = olApp.CreateItem(olMailItem)
How do I specify a template please. And can I then copy and paste
information from a temporary word document I have created into the body of
the email to retain the format.
Thanks