Sends an email to the specified address using SMTP protocol.
Category: Email Communication · Group: Communication · Activity name: SMTPEmail

Example
SMTPEmail("<emailRecipient>", "<emailSubject>", useOwnCredentials=True, emailBody="<emailBody>", cc="<cc>", bcc="<bcc>", attachmentsFilepath="<attachmentsFilepath>")
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| Use specific credentials | boolean | Check this box if you want to use specific credentials for this activity | ||
| Recipient's email | string | Yes | The email to whom the message will be sent. The recipient's email. | |
| Email subject | string | Yes | The subject of the email to be sent. | |
| Email body | string | Yes | The body of the email to be sent. | |
| Cc | string | The email of who you want to send a copy carbon to. If you want to input multiple emails, you must use ; as separator. | ||
| Bcc | string | The email of who you want to send a blind copy carbon to. If you want to input multiple emails, you must use ; as separator. | ||
| Attachments | string | The filepaths of the attachments to be sent in the email. If you want to input multiple filepaths, you must use ; as separator. |