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

EmailOptions

Namespace PSWriteHTML

Configures email options for sending notifications.

Remarks

This function sets the priority and delivery notifications for email notifications.

Examples

Authored help example

EXAMPLE 1


EmailOptions -Priority 'High' -DeliveryNotifications 'OnSuccess'
Configures email options with High priority and delivery notifications on success.
        

EXAMPLE 2


EmailOptions
Configures email options with default settings.
        

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

EmailOptions [-DeliveryNotifications <OnSuccess|OnFailure|Delay|Never>] [-Encoding <String>] [-Priority <Low|Normal|High>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

DeliveryNotifications Object optionalposition: 1pipeline: Falsevalues: 4
Specifies when delivery notifications should be sent. Valid values are 'None', 'OnSuccess', 'OnFailure', 'Delay', or 'Never'.
Possible values: OnSuccess, OnFailure, Delay, Never
Encoding String optionalposition: 2pipeline: False
Priority String optionalposition: 0pipeline: Falsevalues: 3
Specifies the priority of the email. Valid values are 'Low', 'Normal', or 'High'.
Possible values: Low, Normal, High