Email: New Email Received
Triggers when a new email arrives at your workflow's inbox. Great for processing inbound emails and building email-based automations.
Trigger Communications
Triggers when a new email arrives at your workflow's inbox. Great for processing inbound emails and building email-based automations.
At a Glance
| Field | Value |
|---|---|
| Trigger ID | email-new-email-received |
| Category | Communications |
| Tags | email, communication, notification, inbound, smtp |
Trigger Configuration
This trigger does not require configuration fields.
Trigger Result
| Field | Type | Required | Description |
|---|---|---|---|
triggeredAt | string | Yes | Timestamp when the event was received (UTC, RFC3339 format) |
from | string | No | Sender email address |
to | array | No | Recipient email addresses |
subject | string | No | Email subject line |
text | string | No | Plain text body of the email |
html | string | No | HTML body of the email |
headers | object | No | Email headers |
Workflow Root Example
json{ "nodes": { "root": { "type": "email-new-email-received", "payload": {}, "children": [ "log_event" ] }, "log_event": { "type": "log", "payload": { "message": "Triggered at {{$trigger.triggeredAt}}" }, "children": [] } }}
Downstream nodes can use {{$trigger.triggeredAt}} and any result fields listed above. Event triggers usually expose the raw source payload under a field such as event, body, trade, or raw.
