Self-hosted email for your own domain, running on Cloudflare Workers.
Get you@yourdomain.com with a full web client — no third-party mailbox,
no servers to maintain.
- Real mail in and out — the provider delivers straight into the Worker, nothing is polled
- Threads — replies group into conversations, quoted history collapses
- Attachments — inbound files land in R2, outbound files upload from the composer
- Safe HTML — received HTML renders in a sandboxed iframe
- Multiple domains and users — per-user addresses, admin catch-all, unrouted-mail view
- Delivery status — delivered / bounced / complained tracking
- REST API, CLI, and MCP server — send and read mail from scripts, the terminal, or AI agents
- Light and dark themes
Click Deploy to Cloudflare above, or run the setup wizard locally:
bun run setup
# if bun isn't installed yet:
bash scripts/setup.shThe wizard creates the D1 database and R2 bucket, writes config, and onboards your domain. Budget about 30 minutes — most of that is waiting on DNS.
You need:
- A domain you control
- A Cloudflare account
- Either a Resend account, or the domain on Cloudflare DNS plus a Workers paid plan
One provider is active per deploy, selected by EMAIL_PROVIDER (resend is
the default, cloudflare is the alternative). Do not point the same domain's
apex MX at both.
| Resend | Cloudflare Email Service | |
|---|---|---|
| Outbound | Resend API | Workers env.EMAIL.send() |
| Inbound | Webhook → /api/webhooks/resend | Worker email() handler |
| DNS | Any DNS host | Cloudflare DNS required |
| Cost | Resend free tier + Cloudflare | Requires a Workers paid plan |
| Delivery events | delivered, bounced, complained, … | Accepted send is stored as sent |
Pick Resend if your DNS lives elsewhere or you already use it. Pick Cloudflare Email if the zone is already on Cloudflare and you want everything on one account.
Only needed if you cannot run the wizard.
bun install # or: npm install
bunx wrangler loginCloudflare Email Sending needs Wrangler 4.123+ (older versions hit a removed API path and 404).
bunx wrangler d1 create quickmail
bunx wrangler r2 bucket create quickmail-attachmentsCopy the printed database_id into wrangler.jsonc (replacing
REPLACE_WITH_YOUR_D1_DATABASE_ID), then run migrations:
bun run db:migrate:remoteTo serve from your own hostname, uncomment the routes block in
wrangler.jsonc — the zone must be on the same Cloudflare account.
Then follow exactly one provider track below.
Verify the domain in Resend (Domains → Add Domain) and add every record they show, including the apex
MX— without it, mail never arrives. Enable sending and receiving on the domain.Set the API key (create it with full access — send + domains + receiving):
bunx wrangler secret put RESEND_API_KEY
Deploy, then create the webhook (the URL must be public):
bun run deploy
In Resend → Webhooks add a webhook pointing to
https://<your-worker-url>/api/webhooks/resendwith the eventsemail.received,email.sent,email.delivered,email.bounced,email.complained,email.delivery_delayed,email.failed.Save the signing secret (shown once) and redeploy:
bunx wrangler secret put RESEND_WEBHOOK_SECRET bun run deploy
While testing, a DMARC record on _dmarc is recommended:
v=DMARC1; p=none; rua=mailto:you@yourdomain.com; pct=100; adkim=s; aspf=s
(tighten to p=quarantine later).
The zone must use Cloudflare DNS.
Onboard the domain for both Email Sending and Email Routing in the dashboard, or with Wrangler 4.123+:
bunx wrangler email sending enable yourdomain.com bunx wrangler email routing enable yourdomain.com
Route inbound mail to the Worker. In the Email Routing dashboard, enable Catch-all with the action Send to a Worker → this app. The catch-all is what lets users create arbitrary addresses in Settings. (This step is dashboard-only — the CLI can't set a Worker as the catch-all action.)
Configure the Worker in
wrangler.jsoncand deploy:bun run deploy
Inbound mail only works on a deployed Worker (or bun run preview) —
vite dev never runs the email() handler.
- Open the deployed URL.
- Visit
/setup— pick a domain and create the admin account (name, address, password). That address is both the inbox and the login. - Later users claim addresses through
/onboarding.
Send yourself a message from another account — it should land within seconds.
QuickMail can push-notify users about new mail even with no tab open:
bunx web-push generate-vapid-keys
bunx wrangler secret put VAPID_PUBLIC_KEY
bunx wrangler secret put VAPID_PRIVATE_KEY
bunx wrangler secret put VAPID_SUBJECT # e.g. mailto:admin@example.com
bun run db:migrate:remote
bun run deployUsers opt in under Settings → Desktop notifications. Don't rotate the key pair after users subscribe, or they'll have to re-enable.
cp .dev.vars.example .dev.vars # fill in the provider you're using
bun install
bun run db:migrate:local
bun run dev| Command | Purpose |
|---|---|
bun run dev | Vite dev server (D1/R2 via platformProxy) |
bun run preview | Production build + wrangler dev (Cloudflare inbound) |
bun run check | svelte-check |
bun run test | Unit tests |
bun run deploy | Build, wrap the Worker with email(), deploy |
Testing inbound with Resend: webhooks can't reach localhost, so tunnel it
(cloudflared tunnel --url http://localhost:5173) and point a throwaway
webhook at the tunnel — never repoint production.
Testing inbound with Cloudflare Email: use bun run preview or a deploy.
Forgot the admin password:
bun scripts/reset-admin-password.mjs you@example.com newpassword --localAny user can mint a long-lived API key under Settings → API keys and use it as a bearer token:
curl https://your-worker/api/mail \
-H "Authorization: Bearer qm_live_..." \
-H "Content-Type: application/json" \
-d '{"to": "you@example.com", "subject": "hello", "text": "hi"}'GET /api/mail?view=inbox lists conversations. Keys are scoped (mail:read,
mail:send, admin) and only the SHA-256 hash is stored — the raw value is
shown once. Revoking a key takes effect immediately.
curl -fsSL https://raw.githubusercontent.com/DivinPrince/quickmail/main/scripts/install.sh | sh
quickmail login --url https://<your-instance> --token <key from Settings>
quickmail inbox
quickmail send --to someone@example.com --subject "Hi" --body "Hello"The same credentials drive an MCP server for Claude, Cursor, and other agents:
{
"mcpServers": {
"quickmail": {
"command": "quickmail",
"args": ["mcp"],
"env": {
"QUICKMAIL_URL": "https://mail.example.com",
"QUICKMAIL_TOKEN": "qm_live_…"
}
}
}
}quickmail is the launcher from the install script (~/.local/bin/quickmail). Login once, or set QUICKMAIL_URL and QUICKMAIL_TOKEN as above.
Tools: list_threads, get_thread, search_mail, send_message, reply,
list_attachments.
Both providers accept every address on a connected domain. The app then routes:
- Exact match in
addresses→ that user - Else the domain's catch-all owner (admin) → that user
- Else stored as unrouted and listed in the admin view
src/
worker.ts SvelteKit fetch + Cloudflare email() inbound
routes/ inbox, compose, drafts, settings, admin, setup
lib/
components/ sidebar, mailbox, composer, thread view
server/ providers, inbound, D1, auth
scripts/
setup.sh / setup.mjs first-run wizard
wrap-cloudflare-worker.mjs attach email() after the SvelteKit build
cli/ quickmail CLI + MCP server
migrations/ D1 schema, applied in order
| Symptom | Fix |
|---|---|
wrangler email sending enable → 404 | Wrangler too old — upgrade to 4.123+ |
| Mail never arrives (Resend) | dig MX yourdomain.com must point at Resend; enable receiving on the domain |
| Mail never arrives (Cloudflare) | Apex MX must be Cloudflare Routing, catch-all must target this Worker, EMAIL_PROVIDER=cloudflare, Worker must be deployed |
| Webhook 401 | RESEND_WEBHOOK_SECRET mismatch — secrets are shown once; recreate the webhook |
| Webhook 500 | bunx wrangler tail |
| Attachments missing | R2 bucket must exist and match bucket_name in wrangler.jsonc |
database_id errors on deploy | Paste the id from wrangler d1 create into wrangler.jsonc |
| Setup shows no Cloudflare domains | Set CLOUDFLARE_MAIL_DOMAINS and EMAIL_PROVIDER=cloudflare, restart the dev server |
MIT — use it, modify it, ship it, commercially or not. Copyright © 2026 Irasubiza Divin Prince.