History  | 
AltBody (email) 
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 
 | ||