Configuration
| Setting | Description |
|---|---|
| Integration | The connected email provider |
| Subject | Email subject line — supports Mentions for dynamic values |
| Message Template | Email body — supports Mentions for dynamic values |
| To Emails | Recipient email address(es) |
| CC Emails | CC recipients (optional) |
| BCC Emails | BCC recipients (optional) |
| From Email | Sender address (uses integration default if empty) |
| Content Type | text/plain (default) or text/html for rich formatting |
Template Options
| Setting | Description |
|---|---|
| Template ID | Provider-specific template ID (SendGrid) or slug (Mailchimp) |
| Template Variables | Key-value mapping of template variables |
How It Works
Output
Emails are sent when the Agent runs. Each send is logged as a task.By default, all matching records are combined into a single email (field values concatenated). To send one email per record, add a Group By node before this node, grouped by the primary key field.
Example
Send a personalized alert when a deal closes:- Filter for opportunities with Stage = “Closed Won”
- Group By → Opportunity.Id
- Send Email
- To:
{{Salesforce.Opportunity.OwnerEmail}} - Subject:
Deal closed: {{Salesforce.Opportunity.Name}} - Body:
Congratulations! {{Salesforce.Opportunity.Name}} closed for ${{Salesforce.Opportunity.Amount}}.
- To:
Best Practices
- Use Group By before this node to send per-record emails
- Use text/html content type for rich formatting with links and tables
- Use Template ID for consistent branding with provider-managed templates
- Test with a small dataset before enabling automatic execution