Small company logo:
   History
 
Advertising banner:
 
 Email.Body
Home • Help • Customization Tools • FCAS • Language Reference • Email.Body
 
Purpose
Sets the body text for a message.
This attribute is optional as body text is not required for a message to be sent.
Syntax
Message.Body [= StringExpression]


StringExpression
Any text value.

Example
Sub Main()
        Dim MyMessage As Email
        ...
        MyMessage.Body = "FCAS demo, you are using too much disk space."
        MyMessage.Send
End Sub