The SEND_MAIL action is used to send the message body and attachments using the Microsoft email services.
The input parameters for SEND_MAIL are:
Parameter | Type | Required | Description |
---|---|---|---|
bcc | String | Optional | BCC recipient of the email. Multiple recipients are allowed. |
cc | String | Optional | CC recipient of the email. Multiple recipients are allowed. |
from | String | Required | Email address of the sender. When not provided, the default configured address is be used. |
html | String | Optional | HTML-formatted message body. |
metadata | JSON | Optional | Metadata to be used by the template to resolve variable placeholders. Metadata is a JSON object that contains key-value pairs. |
reply-to | String | Optional | The recipients that are replied. Multiple recipients are allowed. |
subject | String | Optional | The subject of the message. |
template | Array<content>, Content | Optional |
File that contains the template used for generating the document. If the received value contains multiple binary contents, only the first of them will be used. Template files can be uploaded from the modeling app, or referenced from the repository. |
text | String | Optional | The content of the message written as plain, non-rich email. It can be used in combination with html, for email clients that don’t support rich content. The client will then fall back to this text-only alternative. |
to | String | Optional | Recipients of the email. Multiple recipients are allowed. |
There are no output parameters.