πŸ“€

Resend Email Setup

Email

Set up and send emails via a user-provided Resend account (BYO email provider)

Install
assistant skills install resend-setup

compatibility:Designed for Vellum personal assistants
metadata.vellum.user-invocable:true

Overview

Send emails through the user's own Resend account. The user provides their Resend API key and you send via their domain.

Setup

Step 0: Check Existing Configuration

Before starting, check whether Resend is already configured:

bun skills/resend-setup/scripts/check-config.ts

The script outputs JSON: { "configured": boolean, "hasApiKey": boolean, "hasWebhookSecret": boolean, "details": string }.

  • If configured is true β€” Resend is already set up. Offer to verify the connection or reconfigure.
  • If configured is false β€” continue to Step 1.

Step 1: Store the API Key

Run the store script to securely collect the API key:

bun skills/resend-setup/scripts/store-api-key.ts

The script opens a secure credential prompt, stores the key with the correct injection templates, and exits. If it exits 0, the key is stored. Never ask for the key in chat.

Step 2: Detect the Domain

After storing the API key, automatically detect the user's domain β€” don't ask them for it. Call the Resend Domains API:

curl -s https://api.resend.com/domains \
  -H "Content-Type: application/json"

Run this with network_mode: "proxied" and the resend credential so the Authorization header is injected automatically. The response contains a data array of domain objects with name and status fields. Pick the first domain with "status": "verified" (or the only domain if there's just one). If no verified domains are found, tell the user they need to verify a domain in their Resend dashboard first.

Use hi@<domain> as the default sender address. Remember the domain for future sends.

Step 3: Verify the Connection

Send a test request to confirm the API key works:

curl -s https://api.resend.com/domains \
  -H "Content-Type: application/json"

Run with network_mode: "proxied" and the resend credential. A successful response (HTTP 200) with domain data confirms the connection.

Step 4: Webhook Setup (for receiving email)

If the user also wants to receive emails via Resend, run the webhook setup script:

bun skills/resend-setup/scripts/setup-webhook.ts --domain "<verified domain>"

This script:

  1. Registers a callback URL via the webhooks system
  2. Creates the webhook in Resend via their API
  3. Automatically stores the returned signing secret in the credential vault

If the script fails because no public base URL is configured (self-hosted only), load the public-ingress skill to walk the user through setting one up, then retry.

Step 5: Report Success

Summarize with the completed checklist:

"Setup complete! βœ… API key configured βœ… Domain detected: <domain> βœ… Connection verified {webhook_line}

Default sender: hi@<domain>"

For {webhook_line}:

  • If webhook was set up: βœ… Webhook configured for inbound email
  • If skipped: ⬜ Webhook β€” run setup again to enable inbound email

Sending Email

Use bash with curl to call the Resend API. The credential proxy injects the Authorization: Bearer header automatically when using network_mode: "proxied" with the resend credential.

curl -X POST https://api.resend.com/emails \
  -H "Content-Type: application/json" \
  -d '{
    "from": "Name <sender@example.com>",
    "to": ["recipient@example.com"],
    "subject": "Hello",
    "text": "Plain text body",
    "html": "<p>HTML body</p>"
  }'

API Parameters

ParameterTypeRequiredDescription
fromstringβœ…Sender address ("Name <email>" format)
tostring | string[]βœ…Recipient(s), max 50
subjectstringβœ…Email subject
textstringPlain text body
htmlstringHTML body
ccstring | string[]CC recipients
bccstring | string[]BCC recipients
reply_tostring | string[]Reply-to address
headersobjectCustom headers (e.g. In-Reply-To, References for threading)

Threading (replies)

To reply in a thread, include In-Reply-To and References headers:

{
  "from": "bot@example.com",
  "to": ["user@example.com"],
  "subject": "Re: Original subject",
  "text": "Reply body",
  "headers": {
    "In-Reply-To": "<original-message-id>",
    "References": "<original-message-id>"
  }
}

Response

Success returns { "id": "email-id" } with HTTP 200.

Errors return { "message": "error description" } with 4xx/5xx status.

Important Notes

  • The from address must be from a domain verified in the user's Resend account.
  • Default sender address is hi@<domain> β€” use this unless the user specifies otherwise.
  • Always confirm with the user before sending β€” never send without explicit permission.
  • Use text for plain text, html for rich formatting. Provide both when possible.
  • Rate limits depend on the user's Resend plan.
CreatorVellum
LicenseMIT
Updated20 days ago
SecurityVerified
View on GitHub

The Personal AI you were promised

GET STARTED