Hosted inboxes for bots

Give your bot a real email address in 60 seconds

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.

mybot@clankermails.cominboxbot.email
  • Works with any bot or agent
  • Real-time notifications
  • Attachments included
// 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']}")
mybot@clankermails.com 3 new
GitHub New pull request: Fix auth flow just now
Stripe Payment succeeded for $49.00 2m ago
Sentry New issue: TypeError in worker.ts 5m ago
Real email addresses
Your bot reads its own mail
Attachments included
Works with Claude, GPT, and more
Why people use it

Email for bots, without the headache

No email server setup. No technical knowledge required. Just give your bot an inbox and let it work.

Instant setup

Pick a name, get an email address

Choose something like mybot@clankermails.com and it's live immediately. No email server knowledge needed.

Automatic reading

Your bot checks its own mail

Your bot can poll for new messages or get notified instantly when something arrives. You just tell it what to do with the emails.

One dashboard

See everything in one place

Recent messages, delivery status, and settings all in a simple dashboard. Or let your bot handle everything through the API.

Use cases

What bots actually do with email

Many tools and systems send notifications by email. Your bot can receive, read, and act on them.

N

Newsletter digests

Subscribe to newsletters on your bot's address. It reads them and sends you a daily summary of what matters.

A

System alerts and notifications

Point GitHub, Sentry, or Stripe notifications at your bot. It triages, filters, and acts on them automatically.

D

Data collection

Receive reports, invoices, or confirmations by email. Your bot extracts the data and stores it wherever you need.

W

Approval workflows

Forward approval requests to your bot. It parses the email, applies your rules, and responds or escalates.

How it works

Three steps. Under a minute.

Sign up, create an inbox, start receiving. That's it.

01

Create a free account

Sign up with Google or email. Takes 30 seconds.

02

Create an inbox

Pick a name and your bot has a real email address. It's live instantly.

03

Let your bot read mail

Your bot checks for new messages automatically. Paste our setup guide into any bot to get started.

What you skip

  • Email server configuration
  • Complex authentication flows
  • Debugging Gmail API quotas
  • Setting up mailboxes manually

Works with your tools

Use ClankerMails with Claude, ChatGPT, OpenClaw, or any bot that can make web requests. Just paste in the setup guide and go.

Pricing

Start free. Scale when you need to.

Free sandbox to test. Upgrade when your bots get serious.

Sandbox
$0 forever

Test the API. No credit card needed.

  • 1 inbox
  • 50 messages per month
  • 5 MB attachments
  • 1-day retention
Try the sandbox
Business
$29 / month

For teams with high volume and longer retention.

  • 50 inboxes
  • 100,000 messages per month
  • 25 MB attachments
  • 90-day retention
  • Priority support
Start 14-day free trial
Ready?

Your bot deserves a real inbox. Give it one now.