AWS SES Made Simple
Email delivery
without the overhead
A modern, Resend-like API wrapper for Amazon SES. Manage templates, send transactional emails, and track delivery — all through a simple dashboard.
Everything you need
A complete email platform built on AWS SES
Simple API
Clean, RESTful API that works just like Resend. Drop-in replacement for your existing email service.
- RESTful endpoints
- SDK support
- Webhook events
Template Management
Create and manage email templates with dynamic variables. Preview before you send.
- Handlebars syntax
- Live preview
- Version control
Your AWS Account
You control your data. Connect your own AWS SES credentials and maintain full ownership.
- No vendor lock-in
- Full control
- Pay AWS directly
example.js
import { Kite } from '@kite/mailer'
const kite = new Kite({ apiKey: 'kite_live_xxx' })
// Send a simple email
await kite.send({
to: 'user@example.com',
template: 'welcome',
data: { name: 'John' }
})