ZorroFlow MailZorroFlow
MCP NativeAI-First Email Infrastructure

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.

Your DomainsUnlimited
acme-startup.com
12 inboxes
Active
myproject.io
5 inboxes
Active
client-portal.dev
3 inboxes
Active
Why Startups Love Us
Unlimited Domains Free
Add all your projects, side hustles, and client domains at no extra cost
Wildcard Catch-All
Receive emails to any address: support@, hello@, sales@, anything@
AI Agent Ready
Let Claude or GPT manage your inboxes via native MCP integration
99.9%
Delivery
<100ms
Latency
Free
To Start
SPF, DKIM, DMARC auto-configured
No credit card required
5-minute DNS setup

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.

US-EAST-1: ONLINE

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.

Auto SPF & DKIM setup
Instant verification
Unlimited domains
Developer First

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.

View SDK Docs
send-email.ts
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" />,
});
TypeScript