notiflowsDocs
Channels & ProvidersEmail

Resend

Configure Resend as an email provider in Notiflows

Resend is a modern email API designed for developers with a clean, intuitive interface.

Configuration

To create an email channel with Resend, you'll need to provide the following configuration:

FieldRequiredDescription
API KeyYesYour Resend API key
From EmailYesVerified sender email address
From NameNoDisplay name for the sender

Prerequisites

Before configuring Resend in Notiflows:

  1. A Resend account
  2. A verified domain
  3. An API key

Setup in Notiflows

  1. Navigate to Channels in your project
  2. Click Create Channel
  3. Select Email as the channel type
  4. Select Resend as the provider
  5. Enter your API key and sender details
  6. Save the channel

Templates

Email templates in Notiflows support three content types:

  • Visual - Drag-and-drop editor for rich HTML emails
  • HTML - Raw HTML with full control
  • Plaintext - Simple text emails

Use Liquid templating for dynamic content:

Hi {{ recipient.first_name }},

{{ data.message }}

Available variable contexts:

  • recipient.* - Recipient user data (first_name, last_name, email, etc.)
  • actor.* - User who triggered the notification
  • data.* - Custom payload passed when triggering the notiflow

On this page