Search K
Appearance
Appearance
The Send Email node is used to send emails via Microsoft 365 using a configured service account. This node can dynamically resolve and send to multiple recipients, supports saving the email as a draft, and optionally replies to an existing email thread using an Email ID.
task
Label | Type | Required | Description |
---|---|---|---|
Email To | text[] | ✔️ | List of email addresses to send the email to. Can include placeholders. |
Subject | text | ✔️ | Subject line of the email. Can include variable placeholders. |
Body | text | ✔️ | The email body content (HTML or plain text). Supports placeholder injection. |
Save as Draft | boolean | ❌ | Optional flag to save the email to drafts instead of sending immediately. |
Email ID | text | ❌ | If provided, this will be used to reply to an existing email thread. |
This task does not produce any new output variables, but it sends or drafts an email and updates the task status.
ThirdParty-Microsoft
) to authenticate.Save as Draft
is set to true
, the email is saved instead of sent.Email ID
is provided, the email is treated as a reply in the thread.Field | Value |
---|---|
Email To | [ "user1@example.com", "{managerEmail}" ] |
Subject | Project Update for {ProjectName} |
Body | Hello team, <br/>Please find the latest updates for {ProjectName}. |
Save as Draft | false |
Email ID | (Optional) AAMkADY1ZDExY...AAA= |
EmailService.SendEmail()
method from the Microsoft REST service integration.PropReplacePlaceholders
method resolves any tokenized variables from the automation data context.Body
must be valid; invalid HTML may cause send errors.