Sendook is an open-source email infrastructure platform designed specifically for AI agents. Stop wrestling with Gmail APIs, AWS SES configuration, and MIME parsing. Start building intelligent email-powered agents in minutes.
Traditional email setup for AI agents is painful:
Sendook eliminates all of this complexity with a simple, API-first approach.
Everything your AI agent needs to communicate via email:
Get started in under 5 minutes:
# Install the SDK
npm install @sendook/node
# Create an inbox and send your first email
import Sendook from '@sendook/node';
const client = new Sendook(process.env.SENDOOK_API_KEY);
// Create an inbox
const inbox = await client.inbox.create();
// Send an email
await client.inbox.message.send({
inboxId: inbox.id,
to: 'customer@example.com',
subject: 'Hello from my AI agent',
body: 'This email was sent via Sendook!'
});