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

EmailHeader

Namespace PSWriteHTML

Creates email headers based on the provided ScriptBlock.

Remarks

This function creates email headers using the specified ScriptBlock. It allows customization of email headers before sending an email.

Examples

Authored help example

EXAMPLE 1


$EmailHeader = {
    'From: [email protected]'
    'To: [email protected]'
    'Subject: Hello World'
}
$Headers = EmailHeader -EmailHeader $EmailHeader
Creates email headers with sender, recipient, and subject information.
        

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

EmailHeader [-EmailHeader <ScriptBlock>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

EmailHeader ScriptBlock optionalposition: 0pipeline: False
Specifies the ScriptBlock containing the email header content.