Send email
Description
Sends an email from the Flovello no-reply address. Branches on success/error and outputs the provider messageId on success. To prevent abuse, the recipient must be an active member of the pipeline's organization or a verified destination — sending to any other address fails on the error branch.
When to use
Use Send email to deliver notifications, reports, or alerts from a pipeline. The
email is sent from Flovello’s shared no-reply address, so no SMTP credentials are
needed. Provide both htmlBody and textBody for maximum compatibility. Wire
upstream Concatenate strings nodes to build dynamic subjects or bodies. The
success pin fires with a messageId on delivery; the error pin fires if the
send fails so you can Log message or Fail accordingly.
Pins
Input pins
| Pin | Type | Default | Notes |
|---|---|---|---|
| To | string | — | The recipient email address. Must be an active member of the pipeline's organization or an address verified as a destination in Settings. |
| Subject | string | — | The email subject line. |
| HTML body | string | — | The HTML body of the email. Used when the recipient's client supports HTML. |
| Text body | string | — | The plain-text fallback body. Shown when the client does not render HTML. |
Output pins
| Pin | Type | Notes |
|---|---|---|
| Message ID | string | The provider-assigned message ID, available on the `success` branch. Useful for logging or auditing. |
Execution pins
| Pin | Direction |
|---|---|
| In | Input |
| Success | Output |
| Error | Output |
Example
Send a daily report email and log the message ID on success. Set the To, Subject, HTML body, and Text body inputs on Send email and wire the execution output of Cron schedule into its execution input. On the Success execution output, wire the Message ID output into the Message input of Log message. Wire the Error execution output to a Fail node so failed deliveries surface in the execution log.