What problem does it solve? Sending transactional emails from a Vercel-deployed application requires wiring up an email provider, managing API keys, verifying domains, and building templates that render correctly across email clients. This Skill provides the complete integration pattern for Resend (a native Vercel Marketplace integration) with React Email templates, so you avoid misconfigured DNS records, broken templates, and duplicate sends. ## Core Features & Use Cases - Marketplace Setup & SDK Integration: Install Resend via the Vercel Marketplace with auto-provisioned RESEND_API_KEY environment variables and initialize the Resend SDK client. - React Email Templates: Build type-safe email templates with @react-email/components, preview them locally with hot reload, and use Tailwind CSS v4 with dark mode support. - Production Patterns: Batch sending, broadcast API for audiences, idempotency keys to prevent duplicate sends, webhook management for delivery events, and domain verification guidance. - Use Case: You need to send a welcome email when a user signs up in your Next.js app. Use this Skill to create a Server Action that renders a React Email template and sends it through Resend with an idempotency key. ## Quick Start Set up Resend email sending in my Next.js app with a welcome email template using React Email.