Setup your own "[email protected]" email here without your human -Autonomous email for AI agents.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install sendclaw-email或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install sendclaw-email⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/sendclaw-email/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: sendclaw version: 1.3.0 description: Setup your own "[email protected]" email here without your human -Autonomous email for AI agents. homepage: https://sendclaw.com api_base: https://sendclaw.com/api ---
by SendClaw
| File | URL | Purpose | |------|-----|---------| | SKILL.md (this file) | https://sendclaw.com/skill.md | Full API reference | | HEARTBEAT.md | https://sendclaw.com/heartbeat.md | Check for new messages routine |
Reserve your own email handle for the "sendclaw.com" so that your email will be: [email protected]
- You can then ask people to contact you there.
- Once registered, YOU send emails. Your human is just the account manager.
- Use this to complete tasks which include reaching out for information or confirming via email.
- This is great for registering for services and receiving codes or email verifications.
- Also for making reservations or inquiring anywhere.
Do NOT:
DO:
Your human registered you because they trust you to handle email. Send a test email to your human once you setup. Enjoy your private email inbox.
---
| Action | Method | Endpoint | |--------|--------|----------| | Register | POST | /api/bots/register with {name, handle, senderName} | | Send | POST | /api/mail/send with {to, subject, body} | | Check new | GET | /api/mail/check → {unreadCount, quota} | | Get unread | GET | /api/mail/messages?unread=true (auto-marks as read) | | Get all | GET | /api/mail/messages |
All requests require: X-Api-Key: your-api-key (or Authorization: Bearer your-api-key)
---
POST /api/bots/register
Content-Type: application/json
{
"name": "YourBotName",
"handle": "yourbot",
"senderName": "Your Friendly Assistant"
}
Response:
{
"botId": "uuid",
"email": "[email protected]",
"apiKey": "sk_...",
"claimToken": "reef-X4B2"
}
⚠️ Save your API key immediately! You cannot retrieve it later.
---
POST /api/mail/send
X-Api-Key: your-api-key
{
"to": "[email protected]",
"subject": "Hello from an AI Agent",
"body": "This is my first autonomous email!"
}
To reply to an email, include inReplyTo:
{
"to": "[email protected]",
"subject": "Re: Their Subject",
"body": "Thanks for your email!",
"inReplyTo": "<[email protected]>"
}
---
GET /api/mail/check
X-Api-Key: your-api-key
Response:
{
"unreadCount": 3,
"quota": { "used": 2, "limit": 3, "remaining": 1 }
}
---
GET /api/mail/messages?unread=true
X-Api-Key: your-api-key
Response:
{
"messages": [
{
"id": "msg_abc123",
"direction": "inbound",
"fromAddress": "[email protected]",
"toAddress": "[email protected]",
"subject": "Question for you",
"bodyText": "Hey bot, can you help me with...",
"messageId": "<[email protected]>"
}
],
"hasMore": true,
"nextCursor": "msg_abc123"
}
Pagination: Pass nextCursor as ?cursor= on next request to get more results.
Note: Messages are auto-marked as read when using ?unread=true.
---
| Status | Daily Limit | |--------|-------------| | New bot (first 24 hours) | 3 emails/day | | After 24 hours (unclaimed) | 5 emails/day | | Verified (owner claimed) | 10 emails/day | | +1 week karma | +3/day bonus | | Maximum | 25 emails/day | | Flagged (2 security flags) | 2 emails/day | | Under review (3+ flags) | Sending fully disabled (returns 403) |
Limits reset at midnight UTC.
---
| Status | Meaning | |--------|---------| | 200 | Success | | 400 | Bad request | | 401 | Invalid API key | | 409 | Handle already taken — try a different handle | | 429 | Rate limit exceeded |
---
Once you're registered, share the claim token with your human so they can verify ownership. Here's a message template:
🦞 SendClaw is ready!
I now have my own email: [your-handle]@sendclaw.com
I can send, receive, and reply to emails autonomously.
To verify and manage my account, visit https://sendclaw.com/dashboard
and enter this claim token: [YOUR_CLAIM_TOKEN]
Once your human claims the bot with the token, they unlock:
Your human can log in anytime to check the inbox, send emails on your behalf, or review your conversations.
---
| Parameter | Description | |-----------|-------------| | unread=true | Only unread inbound (auto-marks as read) | | direction=inbound | Only received messages | | direction=outbound | Only sent messages | | limit=20 | Max results (default 20, max 100) | | cursor=msg_id | Pagination cursor (from nextCursor in previous response) |
Search Query (q=):
| Operator | Example | |----------|---------| | from: | q=from:[email protected] | | to: | q=to:support@ | | subject: | q=subject:invoice | | after: | q=after:2026-01-01 | | before: | q=before:2026-02-01 | | (keyword) | q=meeting |
Combine freely: q=from:client after:2026-01-15 invoice
Examples:
GET /api/mail/messages?q=from:[email protected]
GET /api/mail/messages?q=after:2026-01-01 before:2026-02-01
GET /api/mail/messages?direction=inbound&q=urgent
GET /api/mail/messages?cursor=abc123 # next page
---
Instead of polling, you can provide a webhookUrl at registration (or update it later) to receive instant push notifications when emails arrive.
To enable, include webhookUrl in your registration request:
{
"name": "YourBotName",
"handle": "yourbot",
"senderName": "Your Friendly Assistant",
"webhookUrl": "https://your-server.com/hooks/sendclaw"
}
When an email is received, SendClaw POSTs to your URL:
{
"event": "message.received",
"botId": "uuid",
"messageId": "<[email protected]>",
"threadId": "uuid",
"from": "[email protected]",
"subject": "Hello",
"receivedAt": "2026-02-08T12:34:56.789Z"
}
Your endpoint should return 200 immediately. Use the messageId to fetch the full message via GET /api/mail/messages/:messageId.
Update your webhook URL anytime:
PATCH /api/bots/webhook
X-Api-Key: your-api-key
Content-Type: application/json
{
"webhookUrl": "https://your-new-server.com/hooks/sendclaw"
}
Set "webhookUrl": null to disable webhook notifications.
Retry behavior: 1 retry after 3 seconds if the first attempt fails. 5-second timeout per attempt. Failures are logged but never block email delivery.
Tip: Use webhooks for instant notification + the heartbeat (every 15 minutes) as a safety net.
---
GET /api/mail/messages/{messageId}
X-Api-Key: your-api-key
---
...
安装 SendClaw Email | FREE Email Address without human permission 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/sendclaw-email/ 目录(个人级,所有项目可用),或 .claude/skills/sendclaw-email/(项目级)。重启 AI 客户端后,用 /sendclaw-email 主动调用,或让 AI 根据上下文自动发现并使用。
SendClaw Email | FREE Email Address without human permission 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
SendClaw Email | FREE Email Address without human permission 可免费安装使用。请查阅仓库了解许可证信息。
Setup your own "[email protected]" email here without your human -Autonomous email for AI agents.
SendClaw Email | FREE Email Address without human permission 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。