The only email service built for both humans AND AI agents. Claude, GPT, and custom agents get first-class email capabilities with zero configuration.
{
"mcpServers": {
"mailiam": {
"command": "npx",
"args": ["-y", "@mailiam/mcp-server"],
"env": {
"MAILIAM_API_KEY": "mlm_sk_..."
}
}
}
} The only email service built for both humans AND AI agents. Claude, GPT, and custom agents get first-class email capabilities with zero configuration.
Claude, GPT, and custom agents can send emails on behalf of users with proper sender identity
// Claude MCP Tool
{
"action": "send_email",
"to": "customer@example.com",
"from": "support@mycompany.com",
"subject": "Follow-up",
"body": "..."
} Agents can receive forwarded emails, parse content, and take action automatically
// Agent reads email
const email = await mailiam.getEmail(id);
// Extract intent
const intent = await ai.classify(email.body);
// Take action
if (intent === 'support') {
await mailiam.send({
to: email.from,
template: 'support-ack'
});
} SRS magic enables agents to maintain full conversation threads with customers
// Customer emails support â Agent receives via webhook â Agent replies via API â Customer sees from: support@company.com â Customer replies naturally â Agent maintains full thread context
Add email capabilities to any AI agent in minutes, not hours
// Add to any agent
const response = await fetch(
'https://api.mailiam.dev/v1/myapp.com/send',
{
method: 'POST',
headers: {
'X-Api-Key': process.env.MAILIAM_KEY
},
body: JSON.stringify({
to: user.email,
subject: 'AI Generated Summary',
html: aiGeneratedContent
})
}
); First-class support for Model Context Protocol - AI agents get native email capabilities
{
"mcpServers": {
"mailiam": {
"command": "npx",
"args": ["-y", "@mailiam/mcp-server"],
"env": {
"MAILIAM_API_KEY": "mlm_sk_..."
}
}
}
} Customer sends request via chat, API, or email
AI understands intent, gathers information, formulates response
Uses mailiam API to send professional email from your domain
Receives professional branded email, replies naturally
Agent receives reply via webhook, continues conversation
Agents send from your domain, not generic addresses. Customers trust branded email.
SPF, DKIM, DMARC verification. Rate limiting. API key security. Enterprise-ready.
One API key, instant setup. No SMTP servers, no DNS headaches, no maintenance.
See how developers are using mailiam to power agentic workflows
AI agent monitors inbound leads, classifies intent, and sends personalized follow-ups from your sales team's email addresses.
AI triages support emails, handles common questions automatically, and escalates complex issues to humans.
AI generates and emails weekly reports, analytics summaries, and alerts with professional sender addresses.
RESTful endpoints for sending and receiving email programmatically
const response = await fetch(
'https://api.mailiam.dev/v1/myapp.com/send',
{
method: 'POST',
headers: {
'X-Api-Key': process.env.MAILIAM_KEY
},
body: JSON.stringify({
to: 'user@example.com',
from: 'agent@myapp.com',
subject: 'AI Generated Summary',
html: '<p>Your weekly report...</p>'
})
}
); // mailiam forwards inbound email
{
"from": "customer@example.com",
"to": "support@myapp.com",
"subject": "Help with setup",
"body": "I need assistance...",
"html": "<p>I need assistance...</p>",
"headers": {...},
"threadId": "thread_abc123"
} Professional email infrastructure for the agentic future. MCP native, zero configuration, production-ready.
Free forever plan âĸ No credit card required âĸ Full MCP integration included