SendEmail

Metreos.Native.Mail.Send

Summary

SendEmail will send an email using SMTP.

Usage

The SendEmail action will send an email using SMTP to the specified SMTP server, using the credentials specified.

Remarks

None.

Action Parameters
Parameter Name.NET TypeDefaultDescription
To *System.StringThe intended recipient of the email message.
FromSystem.StringThe sender of the email.
MailServerSystem.StringIf 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.
PortSystem.Int3225The port of the SMTP mail server.
UsernameSystem.StringThe user with appropriate permissions to send an email via the mail server.
PasswordSystem.StringThe password of the user specified in Username.
SubjectSystem.StringThe subject of the email.
BodySystem.StringThe body of the email.
SendAsHtmlSystem.BooleanfalseSpecifies whether to send the email in HTML format.
SSLSystem.BooleanfalseSpecifies whether to use SSL to connect to the mail server
AttachmentPathsSystem.Collections.Specialized.StringCollectionOne 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 

Success

No description.

Failure

No description.