resend-webhooks
Installation
SKILL.md
Resend Webhooks
When to Use This Skill
- Setting up Resend webhook handlers
- Debugging signature verification failures
- Understanding Resend event types and payloads
- Handling email delivery events (sent, delivered, bounced, etc.)
- Processing inbound emails via
email.receivedevents
Essential Code (USE THIS)
Express Webhook Handler (Using Resend SDK)
const express = require('express');
const { Resend } = require('resend');
Related skills