Launch email with attachment

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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

Thnaks in advance.
 
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, , , "(e-mail address removed)", , , "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.
 
Back
Top