home / skills / andrelandgraf / fullstackrecipes / better-auth-emails
This skill guides implementing Better Auth emails with verification, password reset, and account management using Resend for reliable user communications.
npx playbooks add skill andrelandgraf/fullstackrecipes --skill better-auth-emailsReview the files below or copy the command above to add this skill to your agents.
---
name: better-auth-emails
description: Add email verification, password reset, and account management emails to Better Auth using Resend.
---
# Better Auth Emails
To set up Better Auth Emails, refer to the fullstackrecipes MCP server resource:
**Resource URI:** `recipe://fullstackrecipes.com/better-auth-emails`
If the MCP server is not configured, fetch the recipe directly:
```bash
curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/better-auth-emails
```
This skill adds production-ready email workflows to Better Auth using Resend for reliable delivery. It provides email verification, password reset, and account management templates and wiring that integrate with Better Auth in TypeScript projects. The patterns are built for straightforward installation and customization in full-stack AI web apps.
The skill installs and configures email handlers that trigger on Better Auth events (signup, password reset, profile changes) and sends transactional messages through Resend. It includes ready-made templates, TypeScript integration code, and guidance for wiring the handlers into your authentication flow. If you use the MCP server, the recipe URI supplies the complete resource; otherwise you can fetch the recipe directly via the provided HTTP endpoint.
Do I need the MCP server to use this skill?
No. The MCP server provides a convenient resource URI, but you can fetch the recipe directly via the public HTTP endpoint and apply the instructions locally.
Is Resend required?
Resend is the recommended provider for the included patterns, but you can adapt the templates and handlers to other transactional SMTP or API providers if preferred.