Resend transactional email patterns, React Email templates, domain configuration, and webhook handling. Use when sending emails, building email templates, or configuring email delivery.
100
100%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
npm install resend
npm install @react-email/componentsimport { Resend } from 'resend';
import { WelcomeEmail } from '@/emails/welcome';
const resend = new Resend(process.env.RESEND_API_KEY);
// Plain text
await resend.emails.send({
from: 'App <no-reply@yourdomain.com>',
to: ['user@example.com'],
subject: 'Welcome',
html: '<p>Your account is ready.</p>',
});
// With React Email template
await resend.emails.send({
from: 'App <no-reply@yourdomain.com>',
to: ['user@example.com'],
subject: 'Welcome',
react: WelcomeEmail({ name: 'Alice' }),
});Template pattern and webhook handler examples: see REFERENCE.md.
npx email devpostmaster@ and confirm headers (SPF/DKIM pass).from: 'Name <no-reply@yourdomain.com>' in sendsWebhook handling patterns and a safe, verified handler example are in REFERENCE.md (this directory).
dig TXT yourdomain.com — confirm SPF/DKIM records appear.curl -X POST -H 'Content-Type: application/json' -d '{"type":"email.delivered"}' https://yourapp.com/api/webhooks/resend — assert 200.See REFERENCE.md for detailed verification commands and troubleshooting.
f5c8508
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.