Backend 525 installs

resend

by resend/resend-skills

Use when working with the Resend email API - sending transactional emails (single or batch), receiving inbound emails via webhooks, managing email templates,…

Skill content

Resend

Quick Send - Node.js

import { Resend } from 'resend';

const resend = new Resend(process.env.RESEND_API_KEY);

const { data, error } = await resend.emails.send(
  {
    from: 'Acme <[email protected]>',
    to: ['[email protected]'],
    subject: 'Hello World',
    html: '<p>Email body here</p>',
  },
  { idempotencyKey: `welcome-email/${userId}` }
);