Small company logo:
   History
 
Advertising banner:
 
 Email.AltBody
Home • Help • Customization Tools • FCAS • Language Reference • Email.AltBody
 
Purpose
Allows the AltBody of a message to be assigned directly or retrieved.
AltBody text is only used in certain circumstances and is generally in HTML format for rendering by a true HTML engine.
When you assign the AltBody, any existing AltBody is overwritten.
Syntax
Message.AltBody [= "<HTML>String</HTML>"]
Example
Dim MyMessage As Email
...
MyMessage.To="Joe User"
MyMessage.Subject="Testing"
MyMessage.AltBody="<HTML>This is the AltBody text.</HTML>"
Debug MyMessage.AltBody
MyMessage.Send