The Mail.CCs collection contains the list of receivers displayed in the CC: field of an email message. The collection can be used to determine the value of a specific CC item, or to iterate through the collection and retrieve a list of all CC items. See the Collection Object for standard collection properties and methods.
Item = Mail.CCs(key|index)
Returns a Variant of type String.
The CCs collection contains the list of email address that will be displayed in the CC: field of an email message, where as the Receivers collection contains the list of receivers that will actually receive the message.
The following example adds a CC: and a BCC: receiver to the mail message
Sub Mail_OnStartRender
Mail.CCs.Add "ceo@emilltest.com"
Mail.Receivers.Add "ceo@emilltest.com"
Mail.Receivers.Add "spy@emilltest.com"
End Sub
Tos, Receivers, Collection Object