(Contents)(Previous)(Next)

GetBCCRecipientsStr()

Description: Returns a comma separated list of names which represent the people who are BCC recipients of this message.
Syntax: object.GetBCCRecipientsStr
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 BCC 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 BCC recipients of this message.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

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

Set message = user.InBox.GetReceivedMessages.GetFirst

sRecipients = message.GetBCCRecipientsStr


Next