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


StringExpression
Any text value.

Example
Sub Main()
        Dim MyMessage As Email
        ...
        MyMessage.Subject = "Too many files..."
        MyMessage.Send
End Sub