}}
The SendEmail Activity sends an Email via SMTP, using a server it connects to. It also supports attachments, HTML bodies and Email templates.
==Arguments==
{| class="wikitable sortable" | width = "50%"
|-
| Attachments|| Collection<Attachment> || In || A list of attachments
|- align="left"
| Bcc|| String {{String_MSDN}} || In || A ';' separated list of blind copy recipients
|- align="left"
| Body|| String {{String_MSDN}}|| In || The body text of the Email
|- align="left"
| BodyTemplateFilePath|| String {{String_MSDN}}|| In || Path to the template to be used
|- align="left"
| Cc|| String {{String_MSDN}}|| In || A ';' separated list of copy recipients
|- align="left"
| EnableSsl|| Boolean{{Boolean_MSDN}}|| In || True if the SMTP server requires SSL encryption, false if not
|- align="left"
| From|| String{{String_MSDN}}|| In || The Email Address to send from
|- align="left"
| Host|| String {{String_MSDN}}|| In || The name or the IP-Address of the SMTP server
|- align="left"
| Password|| String {{String_MSDN}}|| In || The password used for authentication on the SMTP server
|- align="left"
| Port|| Integer{{Int32_MSDN}}|| In || The port to use for SMTP connection; default is 25
|- align="left"
| Result|| Boolean {{Boolean_MSDN}}|| Out || Returns True on success, false on error
|- align="left"
| Subject|| String {{String_MSDN}}|| In || The subject of the Email
|- align="left"
| TestDropPath|| String {{String_MSDN}}|| In || A path to write the Email to as a file, instead of sending it
|- align="left"
| TestMailTo|| String {{String_MSDN}}|| In || A test recipient to send the Email to; will overrule the ''To'' argument if set
|- align="left"
| To|| String {{String_MSDN}}|| In || A ';' separated list of recipients
|- align="left"
| Tokens|| Dictionary<string{{String_MSDN}}, string{{String_MSDN}}> || In || A list of keywords and replacements when using templates
|- align="left"
| UseHTML|| Boolean {{Boolean_MSDN}} || In || True to create the Email in HTML format, false to use plain text
|- align="left"
| Password|| String {{String_MSDN}}|| In || The user name used for authentication on the SMTP server
|}