StyloDocs
Workflow blocks

Send Email

Send an email via Resend

View as Markdown

resend/send-email — Send an email via Resend.

Where it appears

The Send Email block lives in the Integrations group of the Workflow Builder. Connect the Resend integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
emailTotext (supports references)YesRecipient email address for the message sent via Resend. Use literal text or <StepName.field> to reference an address from a previous step.
emailReplyTotext (supports references)NoOptional Reply-To address; replies from the recipient go here instead of the sender. Accepts literal text or <StepName.field>.
emailSubjecttext (supports references)YesSubject line of the email. Use literal text or <StepName.field> to reference a value from a previous step.
emailBodytext (multi-line, supports references)YesBody content of the email. Use literal text or <StepName.field> to reference upstream content such as a generated reply.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Send Email.field>.

NameTypeDescription
successbooleanWhether email was sent successfully
idstringMessage ID from Resend
errorstringError message if sending failed

Example

A minimal configuration for this block:

{
  "type": "resend/send-email",
  "config": {
    "emailTo": "<PreviousStep.field>",
    "emailSubject": "<PreviousStep.field>",
    "emailBody": "<PreviousStep.field>"
  }
}

Limits and failure modes

  • Requires a connected Resend integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required fields (emailTo, emailSubject, emailBody) must be set, or the block fails validation before it runs.
  • On failure the error output is populated; downstream blocks that reference other outputs may not receive values.

On this page