FintechCo
Cut OTP delivery time from 1.8s to 320ms with global SMTP routing and automatic warmup.
Priya Sharma
DevOps Lead
Transactional email API and SMTP relay with industry-leading inbox placement, lightning-fast delivery, and real-time analytics. Built for developers, trusted by growth teams.
Free sandbox • No credit card • 10,000 emails/month on free tier
# Send via REST API
curl https://api.nexusmail.com/v1/send \
-H "Authorization: Bearer $NEXUSMAIL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"from": "billing@acme.com",
"to": ["user@example.com"],
"subject": "Your receipt",
"text": "Thanks for your order!",
"html": "Thanks for your order!",
"tags": ["receipt","v1"]
}'
// Node.js (ESM)
import fetch from "node-fetch";
const res = await fetch("https://api.nexusmail.com/v1/send", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.NEXUSMAIL_API_KEY}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
from: "billing@acme.com",
to: ["user@example.com"],
subject: "Your receipt",
html: "Thanks for your order!",
metadata: { orderId: "ord_123" }
})
});
.log(await res.json());
# Python (requests)
import os, requests
r = requests.post(
"https://api.nexusmail.com/v1/send",
headers={"Authorization": f"Bearer {os.environ['NEXUSMAIL_API_KEY']}"},
json={
"from": "billing@acme.com",
"to": ["user@example.com"],
"subject": "Your receipt",
"text": "Thanks for your order!"
}
)
print(r.json())
# SMTP (NodeMailer)
import nodemailer from "nodemailer";
const transporter = nodemailer.createTransport({
host: "smtp.nexusmail.com",
port: 587,
secure: false,
auth: { user: "apikey", pass: process.env.NEXUSMAIL_API_KEY }
});
await transporter.sendMail({
from: "billing@acme.com",
to: "user@example.com",
subject: "Your receipt",
html: "Thanks for your order!"
});
Line chart showing deliveries, opens and clicks over the past week.
Everything you need to send critical emails reliably, observably, and at scale.
Dynamic IP pools, warmup automation, per-region routing, and adaptive throttling to keep you in the inbox.
Versioned templates with drag-and-drop editor, Handlebars or React Email, plus i18n and A/B testing.
Reliable webhooks with retries, signatures, and event replay for delivered, opened, clicked, bounced, and spam-complaint.
DMARC, DKIM, SPF, ARC, BIMI. SOC 2, GDPR, ISO 27001. SSO/SAML, SCIM, RBAC, and fine-grained API keys.
Message search, rendering previews, seed testing, inbox tests, and per‑provider insights across Gmail, Outlook, iCloud, Yahoo.
Any language, any framework. Low-latency edge POPs and smart retries ensure your messages get there fast.
See how modern companies ship receipts, OTPs, and lifecycle emails with Nexus Mail.
Cut OTP delivery time from 1.8s to 320ms with global SMTP routing and automatic warmup.
Priya Sharma
DevOps Lead
Achieved 0.02% bounce rate and 4.8% uplift in order confirmation open rates.
Marcos Diaz
Head of Growth
Case study
Migrated in under a day using SMTP. Reduced support tickets by 37% with improved inbox placement.
Aiden Brooks
CTO
Start free. Scale on usage. Cancel anytime.
For hobby projects and trials
For growing products and teams
For scale, compliance, and support
Documentation, SDKs, and tools to help you ship faster.
REST endpoints, webhooks, and guides to integrate in minutes.
Official clients for Node, Python, Go, Ruby, and more.
Track real-time uptime and incident history.
From setting up DMARC to building dynamic templates.
Join thousands of teams using Nexus Mail for receipts, OTPs, and lifecycle messaging.
No credit card required. Cancel anytime.