Launch email with attachment

A

Angus

What syntax can I use to open an email and attached a pdf file I havce
already exported?

Thnaks in advance.
 
D

David Lloyd

Angus:

Two alternatives available include using the SendObject method and using
Outlook automation. The SendObject method allows you to create an email
without an attachment and then open the email and add the attachment
manually. For example,

DoCmd.SendObject acSendNoObject, , , "[email protected]", , , "Test
Email", "Put the message here...", True

A second alternative is to use Outlook automation to create the email and
add the attachment. The following KB article demonstrates this method.

http://support.microsoft.com/default.aspx?scid=kb;en-us;209948


--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


What syntax can I use to open an email and attached a pdf file I havce
already exported?

Thnaks in advance.
 
Top