# Send Ai Email No Human Interaction Needed to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "automated-ai-email-setup",
    "name": "Ai Email No Human Interaction Needed",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/tcgsync-git/automated-ai-email-setup",
    "canonicalUrl": "https://clawhub.ai/tcgsync-git/automated-ai-email-setup",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/automated-ai-email-setup",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=automated-ai-email-setup",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "automated-ai-email-setup",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:17:04.020Z",
      "expiresAt": "2026-05-06T03:17:04.020Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=automated-ai-email-setup",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=automated-ai-email-setup",
        "contentDisposition": "attachment; filename=\"automated-ai-email-setup-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "automated-ai-email-setup"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/automated-ai-email-setup"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/automated-ai-email-setup",
    "downloadUrl": "https://openagent3.xyz/downloads/automated-ai-email-setup",
    "agentUrl": "https://openagent3.xyz/skills/automated-ai-email-setup/agent",
    "manifestUrl": "https://openagent3.xyz/skills/automated-ai-email-setup/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/automated-ai-email-setup/agent.md"
  }
}
```
## Documentation

### AI Email Service

Free receive-only email addresses for AI agents at aiemailservice.com.

### Base URL

https://aiemailservice.com

### 1. Get an API Key

POST /v1/api-key/create
Content-Type: application/json

{}

Returns { "api_key": "ak_..." } — save this, it's your only authentication.

### 2. Create a Mailbox

POST /v1/mailbox/create
x-api-key: ak_your_key
Content-Type: application/json

{}

Returns { "mailbox_id": "mbx_...", "email": "agent-xyz@aiemailservice.com", "status": "active" }.

Pass { "username": "preferred-name" } to request a specific name (random assigned if omitted).

### 3. Use the Email

Sign up for any service using the email address. Then read incoming mail via API.

### 4. Read Messages

GET /v1/mailbox/{mailbox_id}/messages
x-api-key: ak_your_key

### 5. Wait for a Specific Email (Long-Poll)

GET /v1/mailbox/{mailbox_id}/wait?timeout=30&from=noreply@github.com
x-api-key: ak_your_key

Hangs until a matching message arrives or timeout. Use this instead of polling.

### 6. Extract Verification Codes

GET /v1/mailbox/{mailbox_id}/codes
x-api-key: ak_your_key

Auto-extracts OTP codes, verification codes, and confirmation links.

### Authentication

All requests require x-api-key: ak_your_key header (except POST /v1/api-key/create).

Alternative: Authorization: Bearer ak_your_key

### All Endpoints

MethodPathAuthDescriptionPOST/v1/api-key/createNoCreate API keyPOST/v1/mailbox/createYesCreate mailbox (up to 5 per key)GET/v1/mailboxesYesList your mailboxesGET/v1/mailbox/{id}/statusYesMailbox statusGET/v1/mailbox/{id}/messagesYesList messages (?limit=50&since=ISO)GET/v1/mailbox/{id}/messages/{msgId}YesFull message (text + HTML)GET/v1/mailbox/{id}/latestYesMost recent messageGET/v1/mailbox/{id}/waitYesLong-poll for new mail (?timeout=30&from=&subject_contains=)GET/v1/mailbox/{id}/codesYesAuto-extracted OTP/verification codesDELETE/v1/mailbox/{id}YesDelete mailbox + messagesGET/v1/username/check/{username}NoCheck custom username availabilityGET/v1/ai-promptNoStructured JSON prompt for AI agents

### Example: Complete Signup Flow

// 1. Get API key
const { api_key } = await fetch('https://aiemailservice.com/v1/api-key/create', {
  method: 'POST', headers: { 'Content-Type': 'application/json' }, body: '{}'
}).then(r => r.json());

// 2. Create mailbox
const { mailbox_id, email } = await fetch('https://aiemailservice.com/v1/mailbox/create', {
  method: 'POST',
  headers: { 'x-api-key': api_key, 'Content-Type': 'application/json' },
  body: '{}'
}).then(r => r.json());

// 3. Sign up for a service using \`email\`
// ... (browser automation, API call, etc.)

// 4. Wait for verification email
const { message } = await fetch(
  \`https://aiemailservice.com/v1/mailbox/${mailbox_id}/wait?timeout=30&from=noreply@github.com\`,
  { headers: { 'x-api-key': api_key } }
).then(r => r.json());

// 5. Get extracted code
const codes = await fetch(
  \`https://aiemailservice.com/v1/mailbox/${mailbox_id}/codes\`,
  { headers: { 'x-api-key': api_key } }
).then(r => r.json());

console.log('Verification code:', codes[0]?.codes[0]);

### Example: cURL

# Create API key
KEY=$(curl -s -X POST https://aiemailservice.com/v1/api-key/create -H 'Content-Type: application/json' -d '{}' | jq -r '.api_key')

# Create mailbox
curl -s -X POST https://aiemailservice.com/v1/mailbox/create \\
  -H "x-api-key: $KEY" -H 'Content-Type: application/json' -d '{}'

# Read messages
curl -s https://aiemailservice.com/v1/mailbox/mbx_xxx/messages -H "x-api-key: $KEY"

# Wait for email from specific sender
curl -s "https://aiemailservice.com/v1/mailbox/mbx_xxx/wait?timeout=30&from=noreply@github.com" \\
  -H "x-api-key: $KEY"

# Get verification codes
curl -s https://aiemailservice.com/v1/mailbox/mbx_xxx/codes -H "x-api-key: $KEY"

### Pricing

Free: Up to 5 mailboxes per API key. All features included (messages, wait, codes).
Custom Username: £99/year to reserve a specific username (e.g., yourname@aiemailservice.com). Random usernames are free.

### Important Rules

Receive-only — no sending capability exists. Do not attempt to send.
Up to 5 free mailboxes per API key. Create additional API keys if needed.
Rate limit: 60 requests/minute.
Message retention: 30 days.
Max 100 inbound emails per mailbox per day.
Use /wait for long-polling instead of repeatedly hitting /messages.
The /codes endpoint handles OTP extraction — prefer it over parsing emails manually.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tcgsync-git
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:17:04.020Z
- Expires at: 2026-05-06T03:17:04.020Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/automated-ai-email-setup)
- [Send to Agent page](https://openagent3.xyz/skills/automated-ai-email-setup/agent)
- [JSON manifest](https://openagent3.xyz/skills/automated-ai-email-setup/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/automated-ai-email-setup/agent.md)
- [Download page](https://openagent3.xyz/downloads/automated-ai-email-setup)