API Reference
Function
EmailHeader
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
EXAMPLE 1
$EmailHeader = {
'From: sender@example.com'
'To: recipient@example.com'
'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 SetsParameters
- EmailHeader ScriptBlock
- Specifies the ScriptBlock containing the email header content.