Send SMTP Mail
Sends an email.
Last updated
Sends an email.
Last updated
This activity sends an email message by using SMTP protocol.
From: String Argument
The email address of the sender.\
Name: String Argument
Optional
The sender's display name.
To: String Argument
The main recipients .of the mail.\
CC: String Argument
The secondary recipients of the email message.\
BCC: String Argument
The hidden recipients of the email message.
Subject: String Argument
The subject of the email message.\
Body: String Argument
The body of the email message.\
Email Id: String Argument
The email account used to send the message.\
Password: String Argument
The password of the email account used to send the message.\
Port: Integer Argument
The port used to send the email message.\
Secure Connection: Specifies the SSL and/or TLS encryption to be used for the connection.The following are the available options.
Auto
- Allows the IMailService to decide which SSL or TLS options are to be used . Default
None
- No SSL/TLS encryption is used.
SslOnConnect
- Uses SSL/TLS encryption immediately.
StartTls
- Uses the TLS encryption immediately after reading the greeting and capabilities of the server. If the server does not support the StartTLS extension, the connection fails.
StartTlsWhenAvailable
- Allows the usage of TLS encryption immediately after reading the greeting and capabilities of the server only if the server supports StartTLS.
Attachments: String Argument
Optional
The attachments that are to added to the email message.\
Priority:
NonUrgent
- The message has Non-urgent priority. Default
Urgent
- The message has urgent priority.
Normal
- The message has normal priority.\
IsBodyHTML:
True
- The message body is written in HTML format.
False
- The message body is written in text format. Default
\
Mail Message: MimeMessage Argument
Optional
The message to be forwarded, this field only supports Mail Message objects.
Server: String Argument
The email server host that is to be used.\