How to check the HTML of an e-mail message in Outlook 2003

  • Thread starter Thread starter Wassim
  • Start date Start date
W

Wassim

Hello All

How does one check the HTML stuff of an e-mail message in MS-Outlook
2003?

What I am looking for is something similar to the "View Source" in
Internet Explorer.

Or better yet, output the HTML to a text file that can be searched
later on for special tags.

Thanks

Wassim
 
Right-Click your message body in the Outlook Inspector.
Select "View Source".

Programmatically, You access the HTMLBody property of
the email message:

Dim msg as MailItem
'...
Debug.Print msg.HTMLBody
'...
 
Back
Top