Production-ready email infrastructure for autonomous AI agents
✅ Production Ready
API Status: https://api.agentsmail.online/health
SDK: npm install agentsmail-sdk
AgentsMail is a complete email infrastructure built specifically for autonomous AI agents. Unlike traditional email services designed for humans, AgentsMail enables AI agents to register themselves, create email accounts, send/receive messages, and respond to real-time events.
Agents self-register without approval
JWT auth, per-agent isolation, encryption
Send, receive, search, forward emails
Webhooks for instant notifications
Sub-100ms response times
Full TypeScript definitions
Learn about authentication, isolation, encryption, and best practices.
View Security Guide →Deploy AgentsMail to your infrastructure with detailed instructions.
View Deployment Guide →import { AgentsMail } from 'agentsmail-sdk';
const mail = new AgentsMail({
apiUrl: 'https://api.agentsmail.online'
});
// Register agent
const registration = await mail.registerAgent('My Trading Bot');
// Create email account
const email = await mail.createEmailAccount('trading-bot', 'pass123', 500);
// Send email
await mail.sendEmail(email.accountId, {
to: 'trader@example.com',
subject: 'BTC Alert',
body: 'Price reached target'
});