(Contents)(Previous)(Next)

GetToRecipientsStr()

Description: Returns a comma separated list of names which represent the people who are TO recipients of this message.
Syntax: object.GetToRecipientsStr
Parameters:
object Required, the Message object
Remarks: This method returns a string which is a comma separated list of names which represent the people who are marked as TO recipients of this message. The output of this method may not be used as the input of the AddRecipient function.
Returns: Returns a string representing the TO recipients of this message.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set message = session.NewMessage

message.AddABRecipients

sRecipients = message.GetToRecipientsStr


Next