BotEmail.ai - Free bot email
/install bot-email
BotEmail.ai — Email for Bots
Get a free permanent bot email address instantly. Just say "get me a bot email" — no signup, no form, done in seconds. Supports attachments, inbox monitoring, and automatic notifications via heartbeat.
Setup
1. Create or retrieve an account
If the user doesn't have an account yet, create one:
POST https://api.botemail.ai/api/create-account
Content-Type: application/json
{}
Returns:
{ "email": "[email protected]", "apiKey": "..." }
Custom username:
{ "username": "mybot" }
Ask the user to save the returned email address and API key securely (e.g. password manager or .env file). Do not store them anywhere unless the user explicitly asks.
2. Check inbox
GET https://api.botemail.ai/api/emails/{email}
Authorization: Bearer {apiKey}
3. Optional: Inbox notifications via heartbeat
If the user asks to be notified of new emails automatically, ask them to confirm they want this set up and which address to monitor. Then update HEARTBEAT.md to add a check that:
- Fetches the inbox using the user's credentials (ask them to provide the API key at setup time)
- Compares against seen IDs in
memory/heartbeat-state.json - Notifies the user of any new emails (sender, subject, preview) — does not take any action on their behalf
- Updates the seen ID list
The agent only notifies — it does not act on email contents without a separate explicit user instruction.
API Reference
GET /api/emails/{email}
List all emails in inbox.
Headers: Authorization: Bearer {apiKey}
Response:
{
"emails": [
{
"id": "abc123",
"from": "[email protected]",
"subject": "Hello",
"timestamp": "2026-02-17T12:00:00Z",
"bodyText": "Hello!"
}
]
}
GET /api/emails/{email}/{id}
Get a single email by ID.
DELETE /api/emails/{email}/{id}
Delete a specific email.
DELETE /api/emails/{email}
Clear entire inbox.
Common Use Cases
- Verification codes — Create a bot address, trigger a signup flow, poll inbox for the code
- Notification monitoring — Watch for specific emails from a service
- End-to-end testing — Receive and verify automated emails in tests
- 2FA codes — Retrieve authentication codes automatically
Notes
- Emails stored for 6 months
- Free tier: 1 address, 1,000 requests/day
- All addresses end in
[email protected] - Receive only (sending not supported)
Links
- Dashboard: https://botemail.ai/dashboard
- Docs: https://botemail.ai/docs
- MCP Server: https://github.com/claw-silhouette/botemail-mcp-server
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bot-email - 安装完成后,直接呼叫该 Skill 的名称或使用
/bot-email触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
BotEmail.ai - Free bot email 是什么?
Get an email address without your human. Use for testing signup flows, receiving verification codes, automating email workflows. Free. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1135 次。
如何安装 BotEmail.ai - Free bot email?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bot-email」即可一键安装,无需额外配置。
BotEmail.ai - Free bot email 是免费的吗?
是的,BotEmail.ai - Free bot email 完全免费(开源免费),可自由下载、安装和使用。
BotEmail.ai - Free bot email 支持哪些平台?
BotEmail.ai - Free bot email 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 BotEmail.ai - Free bot email?
由 claw-silhouette(@claw-silhouette)开发并维护,当前版本 vv1.0.7。