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
|