Description: | Returns a comma separated list of names which represent the people who are CC recipients of this message. |
Syntax: | object.GetCCRecipientsStr |
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 CC 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 CC recipients of this message. |
Example: |
Set session = CreateObject("OfficeTalk.Session")
Call session.Logon(login name, password)
Set message = session.NewMessage
message.AddABRecipientsCC
sRecipients = message.GetCCRecipientsStr