Small company logo:
   History
 
Advertising banner:
 
 Email.BodyType
Home • Help • Customization Tools • FCAS • Language Reference • Email.BodyType
 
Purpose
Sets the body type to fcPlainText, fcHTML, or fcETF.
The default is assumed to be fcPlainText and is backwards compatible with previous source.
If you assign HTML to the body of an object and set the body type to fcHTML, it will be translated automatically into FirstClass-styled text.  Likewise, if you are reading the body and wish to get the styled content, it will be translated into the format requested.
Keep in mind that returning a body which was initially created as styled text in FirstClass, modifying it in HTML and writing it back could potentially lose fidelity.
The HTML translation is done using the same method as Internet Services and the client.
Syntax
Message.BodyType = fcPlainText | fcHTML | fcETF
Example
Dim msg as EMail

msg.To="Administrator"
msg.From="Administrator"
msg.Subject="HTML Test"
msg.Body="<B>Bold</B><U>Underlined</U>"
msg.BodyType=fcHTML
msg.Send