(Contents)(Previous)(Next)

GetBody()

Description: Returns the text of the body of the message.
Syntax: object.GetBody
Parameters:
object Required, the Message object
Remarks: This method returns a string which represents the body of this message.
Returns: Returns a string representing the body of the message.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

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

Set message = user.InBox.GetReceivedMessages.GetFirst

sBody = message.GetBody


Next