Outlook 2007 Macro for replying to an e-mail.

  • Thread starter Thread starter Snoopyb98
  • Start date Start date
S

Snoopyb98

I'm looking for macro script that would do the following:

Run from an e-mail, creating a reply, change the subject, change the message
type to html, copy text from a draft, paste into the body.

any ideas?
Thanks,
 
The current message is Application.ActiveInspector.CurrentItem. For an email
it returns a MailItem object.


See MailItem in the object browser (f2), which tells you what properties and
functions are available. For instance, there's a Reply function that returns
a new MailItem object. It supoprts Subject, BodyFormat etc.

--
Best regards
Michael Bauer - MVP Outlook
Category Manager - Manage and share your categories:
SAM - The Sending Account Manager:
<http://www.vboffice.net/product.html?lang=en>


Am Mon, 10 May 2010 13:38:01 -0700 schrieb Snoopyb98:
 
Back
Top