(Contents)(Previous)(Next)

GetBodyHTML()

Description: Returns the text of the body of the message in HTML format.
Syntax: object.GetBodyHTML
Parameters:
object Required, the Message object
Remarks: This method returns a string which represents the body of this message in HTML format.
Returns: Returns a string representing the body of the message in HTML format.
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.GetBodyHTML


Next