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;
Related skills

More from canatufkansu/claude-skills

Installs
11
GitHub Stars
2
First Seen
Feb 7, 2026