Is this message created using the Outlook object model? If you have the
message as a MailItem object then save it and read the Body or HTMLBody
properties.
If you want to wait until send occurs you can either declare the MailItem
WithEvents and handle item.Send() or declare the Outlook.Application object
WithEvents and handle application.ItemSend(). You still should save it
before you read Body or HTMLBody.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"TrussworksLeo" <(E-Mail Removed)> wrote in message
news:9F68028D-5CDA-4B6C-8D18-(E-Mail Removed)...
> Hello,
>
> I was wondering if someone could send me in the right direction.
>
> I have a VB.Net app that opens an email add the sender and adds
> attachments
> to it.
>
> I would like to be able to either save the message or save the txt in the
> body of the message to a file on the file system with other files related
> to
> the purpose of the email. (I know how to do the file system operations
> once I
> get access to the message body)
>
> My App instantiated the message so I should have access to the on send
> event
> correct?
>
> Where do I begin?
>
> I have Sue Moshers book on Outlook 2007 Programming but nothing quite
> fits.
>
> --
> Thank You, Leo