API Reference
Function
EmailAttachment
Creates an email attachment object for header attachments.
Remarks
This function creates an email attachment object specifically for header attachments. It takes an array of file paths and returns a custom object representing the attachment.
Examples
EXAMPLE 1
$Attachment = EmailAttachment -FilePath 'C:\Files\attachment1.txt', 'C:\Files\attachment2.pdf'
Creates an email attachment object with two file paths for header attachments.
EXAMPLE 2
$Files = 'C:\Files\attachment1.txt', 'C:\Files\attachment2.pdf'
$Attachment = EmailAttachment -FilePath $Files
Creates an email attachment object with multiple file paths for header attachments.
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
EmailAttachment [-FilePath <String[]>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- FilePath String[]
- Specifies an array of file paths for the attachments.