API Reference
Function
Add-HTML
Adds HTML content to the email body.
Remarks
This function adds HTML content to the email body by executing the provided ScriptBlock containing the HTML code.
Examples
EXAMPLE 1
$HTMLContent = {
Set-Tag -HtmlObject @{
Tag = 'div'
Attributes = @{
'class' = 'container'
}
Value = 'Hello, World!'
}
}
Add-HTML -HTML $HTMLContent Adds a <div class="container">Hello, World!</div> to the email body.
EXAMPLE 2
$HTMLContent = {
Set-Tag -HtmlObject @{
Tag = 'ul'
Attributes = @{
'id' = 'list'
}
Value = @(
@{
Tag = 'li'
Value = 'Item 1'
}
@{
Tag = 'li'
Value = 'Item 2'
}
)
}
}
Add-HTML -HTML $HTMLContent Adds a list with items 'Item 1' and 'Item 2' to the email body.
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
Add-HTML [-HTML <ScriptBlock>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- HTML ScriptBlock
- Specifies the ScriptBlock containing the HTML code to be added to the email body.