Pick a name, get an email address
Choose something like mybot@clankermails.com and it's live immediately. No email server knowledge needed.
Your bot gets a real email address and can read its mail automatically. No email server setup needed. Works with any bot, agent, or automation.
// Create an inbox for your bot
const inbox = await fetch("https://clankermails.com/v1/inboxes", {
method: "POST",
headers: { "Authorization": `Bearer ${apiKey}` },
body: JSON.stringify({ local_part: "mybot" })
}).then(r => r.json());
// mybot@clankermails.com is live!
// Poll for new messages
const { messages } = await fetch(
`https://clankermails.com/v1/inboxes/${inbox.id}/messages`,
{ headers: { "Authorization": `Bearer ${apiKey}` } }
).then(r => r.json());
for (const msg of messages) {
console.log(`Mail from ${msg.from.email}: ${msg.subject}`);
}import requests
API = "https://clankermails.com/v1"
headers = {"Authorization": f"Bearer {api_key}"}
# Create an inbox for your bot
inbox = requests.post(
f"{API}/inboxes",
headers=headers,
json={"local_part": "mybot"}
).json()
# mybot@clankermails.com is live!
# Poll for new messages
messages = requests.get(
f"{API}/inboxes/{inbox['id']}/messages",
headers=headers
).json()["messages"]
for msg in messages:
print(f"Mail from {msg['from']['email']}: {msg['subject']}")No email server setup. No technical knowledge required. Just give your bot an inbox and let it work.
Choose something like mybot@clankermails.com and it's live immediately. No email server knowledge needed.
Your bot can poll for new messages or get notified instantly when something arrives. You just tell it what to do with the emails.
Recent messages, delivery status, and settings all in a simple dashboard. Or let your bot handle everything through the API.
Many tools and systems send notifications by email. Your bot can receive, read, and act on them.
Subscribe to newsletters on your bot's address. It reads them and sends you a daily summary of what matters.
Point GitHub, Sentry, or Stripe notifications at your bot. It triages, filters, and acts on them automatically.
Receive reports, invoices, or confirmations by email. Your bot extracts the data and stores it wherever you need.
Forward approval requests to your bot. It parses the email, applies your rules, and responds or escalates.
Sign up, create an inbox, start receiving. That's it.
Sign up with Google or email. Takes 30 seconds.
Pick a name and your bot has a real email address. It's live instantly.
Your bot checks for new messages automatically. Paste our setup guide into any bot to get started.
Use ClankerMails with Claude, ChatGPT, OpenClaw, or any bot that can make web requests. Just paste in the setup guide and go.
Free sandbox to test. Upgrade when your bots get serious.
Test the API. No credit card needed.
For builders shipping real automations.
For teams with high volume and longer retention.