Pre-filling e-mail address and subject in e-mail macro

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

Guest

I have a macro that attached the file as an e-mail. How do I edit the macro
to pre-fill the e-mail recipient and subject line on the e-mail? And can it
be edited to send the e-mail within the macro? What is does now is open the
Outlook e-mail window with the file attached.

I'm on Office 2003. Here's my current macro:

Sub attach()
'
' attach Macro
' Macro recorded 04/20/2006 by Jon Mullich
'
ActiveDocument.SendMail
End Sub
 
Back
Top