Native
Synchronous
No Custom Parameters
SendEmail will send an email using SMTP.
The SendEmail action will send an email using SMTP to the specified SMTP server, using the credentials specified.
None.
| Parameter Name | .NET Type | Default | Description |
|---|---|---|---|
| To * | System.String | The intended recipient of the email message. | |
| From | System.String | The sender of the email. | |
| MailServer | System.String | If specified, this IP address or host name will be connected to with SMTP. If not specified, the domain of the To address will be used as the destination. | |
| Port | System.Int32 | 25 | The port of the SMTP mail server. |
| Username | System.String | The user with appropriate permissions to send an email via the mail server. | |
| Password | System.String | The password of the user specified in Username. | |
| Subject | System.String | The subject of the email. | |
| Body | System.String | The body of the email. | |
| SendAsHtml | System.Boolean | false | Specifies whether to send the email in HTML format. |
| SSL | System.Boolean | false | Specifies whether to use SSL to connect to the mail server |
| AttachmentPaths | System.Collections.Specialized.StringCollection | One or more filepaths of attachments to send with the email. This must be a path on the server executing the script. |
No Result Data
Branch Conditions
No description.
No description.