Attachments<String[]> | Path and file names of files to be attached to the message. Paths and filenames can be piped to Send-MailMessage. |
Bcc<String[]> | Email addresses that receive a copy of an email message but does not appear as a recipient in the message. Enter names (optional) and the email address (required), such as Name [email protected] or [email protected]. |
Body <String_> | Content of the email message. |
BodyAsHtml | It indicates that the content is in HTML format. |
Cc<String[]> | Email addresses that receive a copy of an email message. Enter names (optional) and the email address (required), such as Name [email protected] or [email protected]. |
Credential | Specifies a user account that has permission to send message from specified email address. The default is the current user. Enter name such as User or Domain\User, or enter a PSCredential object. |
DeliveryNotificationOption | Specifies the delivery notification options for the email message. Multiple values can be specified. Delivery notifications are sent in message to address specified in To parameter. Acceptable values: None, OnSuccess, OnFailure, Delay, Never. |
Encoding | Encoding for the body and subject. Acceptable values: ASCII, UTF8, UTF7, UTF32, Unicode, BigEndianUnicode, Default, OEM. |
From | Email addresses from which the mail is sent. Enter names (optional) and the email address (require), such as Name [email protected] or [email protected]. |
Port | Alternate port on the SMTP server. The default value is 25. Available from Windows PowerShell 3.0. |
Priority | Priority of the email message. Acceptable values: Normal, High, Low. |
SmtpServer | Name of the SMTP server that sends the email message. Default value is the value of the $PSEmailServer variable. |
Subject | Subject of the email message. |
To | Email addresses to which the mail is sent. Enter names (optional) and the email address (required), such as Name [email protected] or [email protected] |
UseSsl | Uses the Secure Sockets Layer (SSL) protocol to establish a connection to the remote computer to send mail |