send_smtp_email
Send emails via SMTP using 'send_smtp_email' by specifying the recipient, subject, and HTML body for automated email delivery in Sitecore Send workflows.
Instructions
Send an email using SMTP
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | HTML body of the email | |
subject | Yes | Subject of the email | |
to | Yes | Email address to send the email to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "HTML body of the email",
"type": "string"
},
"subject": {
"description": "Subject of the email",
"type": "string"
},
"to": {
"description": "Email address to send the email to",
"format": "email",
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
],
"type": "object"
}