email-resend
Installation
SKILL.md
Email with Resend
Environment Setup
# .env.local
RESEND_API_KEY=re_...
CONTACT_TO_EMAIL=hello@studioname.com
Resend Client
// lib/resend.ts
import { Resend } from 'resend';
export const resend = process.env.RESEND_API_KEY
? new Resend(process.env.RESEND_API_KEY)
: null;