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.
Get started with transactional email
For growing applications and startups
For scaling businesses with high volume
Need higher volume, dedicated infrastructure, SLA guarantees, or custom integrations? Let's talk.
Install our TypeScript SDK, grab your API key, and start sending. No SMTP configuration, no complex setup.
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>",
});