A notification service built with Better Notify, Hono, and oRPC, deployed on Vercel.
Sends transactional emails via SMTP (primary) with Resend as failover, using React Email templates.
pnpm install
cp .env.example .env
# Fill in your SMTP and Resend credentials in .envpnpm devStarts a local server on http://localhost:3000 with hot reload.
pnpm buildBundles the app with Rolldown to dist/server.js.
vercel deploy --prodVercel auto-detects the Hono app and deploys it as a serverless function.
Sends a welcome email.
{
"to": "user@example.com",
"name": "Alice",
"verifyUrl": "https://example.com/verify?token=abc"
}Health check — returns {"status":"ok"}.
- Better Notify — the notification library powering this service
- Hono — web framework
- oRPC — type-safe RPC
- React Email — email templates