Email infrastructure
for the AI era
The modern email API that AI agents understand. Send transactional emails, receive webhooks, and let your AI assistants manage inboxes autonomously.
Modern Infrastructure
Built for the next generation of applications
Native MCP Support
Connect Claude, Gemini, and other AI agents directly to your inbox. ZorroFlow exposes a Model Context Protocol server that lets agents read, search, and send emails autonomously.
End-to-End Type Safety
Full TypeScript support from the SDK to the email template. Catch errors at compile time.
React Components
Write emails like you write apps. No more table-layout nightmares.
Global Edge Network
<100ms delivery worldwide. Our distributed infrastructure ensures your transactional emails hit the inbox instantly, no matter where your users are.
Use Your Own Domain
Add your custom startup domain and start sending & receiving emails immediately. Configure DNS, verify your domain, and deliver from hello@yourstartup.com in minutes.
Stop writing HTML tables.
Start shipping React.
Coding HTML emails with nested tables and inline CSS is a nightmare. ZorroFlow's Node.js SDK lets you build beautiful, responsive emails using standard React components.
Component Based
Reuse your existing design system. Buttons, headers, and layouts work just like your web app.
No More Inline CSS
Write standard styles or use Tailwind. We handle the nasty email client compatibility rendering for you.
Type-Safe SDK
Full TypeScript support. Catch errors at compile time, not after hitting send.
import { Zorro } from 'zorroflow';
import WelcomeEmail from './emails/welcome';
// Send a React component as email
await zorro.emails.send({
to: 'user@gmail.com',
subject: 'Welcome Aboard!',
react: <WelcomeEmail firstName="John" />,
});
