Skip to main content

What does this node do?

Sends emails with customizable content, recipients, and formatting.

Configuration

to
string
required
Recipient email address(es). Comma-separated for multiple.
subject
string
required
Email subject line.
body
string
required
Email content (HTML or plain text).
from
string
Sender email address.
cc
string
CC recipients.
bcc
string
BCC recipients.
is_html
boolean
default:"true"
Send as HTML email.

Output

{
  "sent": true,
  "message_id": "abc123",
  "recipients": ["[email protected]"]
}

Example

Personalized email:
To: {{contact.email}}
Subject: Weekly Report for {{company}}

Hi {{contact.name}},

Here's your weekly report:
{{report_content}}

Best regards