Go to Studio

Email Sender

Send emails from your workflows

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": ["user@example.com"]
}

Example

Personalized email:

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

Hi {{contact.name}},

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

Best regards