(Contents)(Previous)(Next)

Send()

Description: Sends the mail message
Syntax: object.Send
Parameters:
object Required, the Message object
Remarks: This method sends the message.
Returns: Returns True if the message was successfully sent.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

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

Set message = session.NewMessage

message.AddABRecipients

message.Subject = "A Test message"

message.SetBody "This is the body of the message"

message.Send


Next