Small company logo:
   History
 
Advertising banner:
 
 Email.CC
Home • Help • Customization Tools • FCAS • Language Reference • Email.CC
 
Purpose
Sets a cc'd recipient's user name for a message.
Multiple recipients are supported by treating this attribute as an array. Backwards compatibility to previous code is retained.
7202010_20004_0.png        Note
The CC attribute supports FirstClass mail lists, but does not currently support the use of gateways. If the user name is invalid, the message will fail. This attribute must be set or the message will not be delivered.
Syntax
Message.CC [(RecipientNumber)] = "UserName"


RecipientNumber
Used for multiple recipients.
UserName
Any user or conference name with send privileges to the recipient.

Examples
Sub Main()
        Dim MyMessage As Email
        ...
        MyMessage.CC = "FCAS Demo"
        MyMessage.Send
End Sub
In the following example, (1) designates the zero-indexed number of the recipient.  No (x) means 0, as does (0).
Sub Main()
dim msg as EMail

msg.To="Administrator"
msg.To(1)="Joe User"
msg.CC="John Doe"
msg.CC(1)="Jane Doe"
msg.BCC="John Smith"
msg.BCC(1)="Joe Schmoe"
msg.From="Administrator"
msg.Subject="Multiple Recipient Test"
msg.Send

End Sub