SendGrid alternative — built for developers

Transactional email
that just works

Reliable email delivery with a developer-first API. Send with our SDK in 3 lines of code. 99.9% uptime. No credit card required for free tier.

MonthlyYearlySave 20%

Free

Get started with transactional email

Free
3K emails/month
1 domain
2 API keys
100 emails/day
Get Started Free
Transactional email API
TypeScript / Node.js SDK
Basic analytics
Template editor
Email activity logs (3 days)
Community support
Webhooks
Custom tracking domain
Dedicated IP
Email validation
Priority support
Inbound parse
Most Popular

Pro

For growing applications and startups

$20/mo
50K emails/month
5 domains
10 API keys
2K emails/day
Start Pro Trial
Transactional email API
TypeScript / Node.js SDK
Full analytics dashboard
Template editor
Email activity logs (30 days)
Email support
Webhooks (5 endpoints)
Custom tracking domain
Dedicated IP
Email validation
Priority support
Inbound parse

Business

For scaling businesses with high volume

$75/mo
200K emails/month
25 domains
50 API keys
10K emails/day
Start Business Trial
Transactional email API
TypeScript / Node.js SDK
Full analytics dashboard
Template editor
Email activity logs (90 days)
Priority email & chat support
Webhooks (25 endpoints)
Custom tracking domain
Dedicated IP
Email validation
Priority support
Inbound parse

Enterprise

Need higher volume, dedicated infrastructure, SLA guarantees, or custom integrations? Let's talk.

Send your first email in minutes

Install our TypeScript SDK, grab your API key, and start sending. No SMTP configuration, no complex setup.

1
npm install @oonrumail/sdk
2
Create an API key in the console
3
Send your first email with 3 lines of code
send-email.ts
import { OonruMail } from "@oonrumail/sdk";

const mail = new OonruMail({
  apiKey: process.env.OONRUMAIL_API_KEY,
});

await mail.send({
  from: "noreply@yourapp.com",
  to: ["user@example.com"],
  subject: "Welcome to YourApp!",
  html: "<h1>Welcome aboard 🎉</h1>",
});