Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

EmailCC

Namespace PSWriteHTML

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

Authored help example

EXAMPLE 1


$CCRecipients = EmailCC -Addresses 'cc1@example.com', 'cc2@example.com'
Creates an email object with two CC recipients.
        

EXAMPLE 2


$CCList = 'cc1@example.com', 'cc2@example.com'
$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 Sets

Parameters

Addresses String[] optionalposition: 0pipeline: False
Specifies an array of email addresses for the CC recipients.