API Reference
Function
EmailCC
Creates an email object for carbon copy (CC) recipients.
Remarks
This function creates an email object specifically for carbon copy (CC) recipients. It takes an array of email addresses and returns a custom object representing the CC recipients.
Examples
EXAMPLE 1
$CCRecipients = EmailCC -Addresses '[email protected]', '[email protected]'
Creates an email object with two CC recipients.
EXAMPLE 2
$CCList = '[email protected]', '[email protected]'
$CCRecipients = EmailCC -Addresses $CCList
Creates an email object with multiple CC recipients.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
EmailCC [-Addresses <String[]>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- Addresses String[]
- Specifies an array of email addresses for the CC recipients.