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

EmailBCC

Namespace PSWriteHTML

Creates an email object for blind carbon copy (BCC) recipients.

Remarks

This function creates an email object specifically for blind carbon copy (BCC) recipients. It takes an array of email addresses and returns a custom object representing the BCC recipients.

Examples

Authored help example

EXAMPLE 1


$BCCRecipients = EmailBCC -Addresses '[email protected]', '[email protected]'
Creates an email object with two BCC recipients.
        

EXAMPLE 2


$BCCList = '[email protected]', '[email protected]'
$BCCRecipients = EmailBCC -Addresses $BCCList
Creates an email object with multiple BCC 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

EmailBCC [-Addresses <String[]>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

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