Skip to main content

Node Inputs

Required Fields

To:
The recipient email address.
Example: "recipient@example.com"
Subject:
The subject line of the email.
Example: "Your Weekly Report"
Content:
The body content of the email (supports HTML).
Example: "<p>Here is your weekly report...</p>"

Optional Fields

From Name:
The sender’s display name.
Example: "DNG Builder"
Default: Uses SendGrid configured sender name
From Email:
The sender’s email address.
Example: "noreply@example.com"
Default: Uses SendGrid configured sender email
CC:
Carbon copy recipients (comma-separated).
Example: "cc1@example.com, cc2@example.com"
BCC:
Blind carbon copy recipients (comma-separated).
Example: "bcc@example.com"
Reply To:
Reply-to email address.
Example: "support@example.com"
Attachments:
Array of file URLs or base64-encoded attachments.
Example: ["https://example.com/report.pdf"]

Node Output

Send Status:
Confirmation of the email send operation including message ID and status.
Example Output:
{
  "status": "sent",
  "message_id": "abc123def456",
  "to": "recipient@example.com",
  "subject": "Your Weekly Report",
  "sent_at": "2024-10-19T10:30:00Z"
}

Node Functionality

The Email Sender node:
  • Sends emails using SendGrid API for reliable delivery.
  • Supports HTML email content for rich formatting.
  • Enables CC, BCC, and Reply-To functionality.
  • Allows file attachments for reports and documents.
  • Provides delivery confirmation and tracking.
I