(Contents)(Previous)(Next)

SetBody()

Description: Sets the text of the body of the message.
Syntax: object.SetBody
Parameters:
object Required, the Message object
Remarks: This method sets the body of this message.
Returns: Nothing.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Set user = session.Logon(login name, password)

Set message = session.NewMessage

message.SetBody "This is the message body"


Next