Transactional and marketing email from a single API. Self-hosted, multi-IP rotation, intelligent warmup, list hygiene, and AI-powered campaign tooling — all in one platform.
Platform capabilities
From a single send to millions of messages — 3AVA Mail gives you the infrastructure layer that production email requires.
Route traffic across dedicated IP pools per domain, project, or volume tier. Automatic failover ensures deliverability when a single IP faces temporary blocks.
New IPs follow science-backed volume schedules. 3AVA Mail tracks engagement signals in real-time and adjusts ramp curves automatically to protect sender reputation.
Built-in address verification, bounce classification, and suppression lists. Automatically prune hard bounces, complaints, and role-based addresses before each send.
Generate subject lines, preview text, and full HTML body with integrated AI assistance. A/B variant creation, send-time optimisation, and audience segmentation, all via API.
Real-time event streaming for sent, delivered, opened, clicked, bounced, and complained events. Automatic retries with exponential backoff and signed payloads for verification.
Identical request/response format to Resend. Swap one base URL and your existing SDK calls work instantly — no code changes required. Official SDKs for Node, Python, and Go.
Developer-first
A single authenticated POST to /emails handles
transactional, marketing, and bulk sends identically. No separate client libraries,
no mode-switching.
# Send a transactional email via 3AVA Mail API
curl -X POST https://api.3ava.com/emails \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"from": "Acme [email protected]",
"to": ["[email protected]"],
"subject": "Your order has shipped 🚀",
"html": "<p>Track it at <a href='...'>here</a></p>",
"tags": [
{ "name": "category", "value": "order-shipped" }
]
}'
# Response
{
"id": "msg_01jx4n8fa...",
"from": "[email protected]",
"to": ["[email protected]"],
"status": "queued"
}