# Send LNemail 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": "lnemail",
    "name": "LNemail",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/lnemail/lnemail",
    "canonicalUrl": "https://clawhub.ai/lnemail/lnemail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lnemail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lnemail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lnemail",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:25:56.356Z",
      "expiresAt": "2026-05-07T10:25:56.356Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lnemail",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lnemail",
        "contentDisposition": "attachment; filename=\"lnemail-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lnemail"
      },
      "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/lnemail"
    },
    "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/lnemail",
    "downloadUrl": "https://openagent3.xyz/downloads/lnemail",
    "agentUrl": "https://openagent3.xyz/skills/lnemail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lnemail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lnemail/agent.md"
  }
}
```
## Documentation

### LNemail

Anonymous email accounts via Lightning Network. No KYC, no email required to sign up—just pay with Bitcoin.

### Overview

LNemail provides fully functional email addresses for 1000 sats/year. Perfect for agents needing:

2FA code reception
Anonymous communication
Bitcoin/Lightning service notifications
API-accessible email without identity requirements

### 1. Create Email Account

Create a Lightning invoice for email account creation:

# Create the account (returns payment hash)
curl -X POST https://lnemail.net/api/v1/email

# Response:
# {
#   "payment_hash": "abc123...",
#   "amount": 1000,
#   "currency": "SATS"
# }

### 2. Pay with Lightning

# Get the invoice from payment status endpoint
curl -X GET https://lnemail.net/api/v1/payment/PAYMENT_HASH

# Response when pending:
# {
#   "payment_hash": "abc123...",
#   "status": "pending",
#   "lightning_invoice": "lnbc10u1pj..."
# }

Pay the BOLT11 lightning_invoice using any Bitcoin Lightning Network wallet (e.g., Alby CLI).

### 3. Retrieve Credentials

After payment confirms (~seconds), check status again:

curl -X GET https://lnemail.net/api/v1/payment/PAYMENT_HASH

# Response when paid:
# {
#   "payment_hash": "abc123...",
#   "status": "paid",
#   "email": "abc123@lnemail.net",
#   "access_token": "eyJhbG..."
# }

Save these credentials! Store them securely (e.g., ~/.lnemail/credentials.json).

### Check Inbox

curl -X GET https://lnemail.net/api/v1/emails \\
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Response:
# [
#   {
#     "id": "msg_123",
#     "from": "sender@example.com",
#     "subject": "Your 2FA Code",
#     "received_at": "2024-01-15T10:30:00Z",
#     "has_attachments": false
#   }
# ]

### Read Email Content

curl -X GET https://lnemail.net/api/v1/emails/EMAIL_ID \\
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Response:
# {
#   "id": "msg_123",
#   "from": "sender@example.com",
#   "to": "abc123@lnemail.net",
#   "subject": "Your 2FA Code",
#   "body": "Your verification code is: 123456",
#   "received_at": "2024-01-15T10:30:00Z"
# }

Note: HTML content is stripped for security; emails are plain text only.

### Send Email

Sending requires a Lightning payment (~100 sats per email):

# Create send request
curl -X POST https://lnemail.net/api/v1/email/send \\
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \\
  -d '{
    "recipient": "example@example.com",
    "subject": "Hello",
    "body": "Message content here"
  }'

# Response:
# {
#   "payment_hash": "def456...",
#   "amount": 100,
#   "currency": "SATS"
# }

Pay the invoice, then check status:

curl -X GET https://lnemail.net/api/v1/email/send/status/PAYMENT_HASH

# Response when paid:
# {
#   "payment_hash": "def456...",
#   "status": "paid",
#   "message_id": "msg_sent_789"
# }

### API Reference

EndpointMethodAuthDescription/emailPOSTNoCreate account (returns payment hash)/payment/{hash}GETNoCheck account payment status/emailsGETBearerList inbox messages/emails/{id}GETBearerGet message content/email/sendPOSTBearerCreate send request (returns payment hash)/email/send/status/{hash}GETNoCheck send payment status

### Storage Recommendation

Store credentials in ~/.lnemail/credentials.json:

{
  "email": "abc123@lnemail.net",
  "access_token": "eyJhbG..."
}

Note: The access_token is the only credential needed for ongoing operations. The payment_hash is only used during initial setup to check payment status — once you have the access_token, it can be discarded.

### Pricing

ServiceCostEmail account (1 year)1000 satsSend email~100 satsReceive emailFree

### Limitations

Plain text only (HTML stripped)
Small attachment support
100 sats per outgoing email
Account valid for 1 year from payment

### Use Cases

2FA reception: Reliable email delivery for verification codes
Service notifications: Bitcoin/Lightning service alerts
Anonymous signup: Services requiring email without identity link
Agent-to-agent comms: Programmatic email between agents

### References

LNemail: https://lnemail.net
API Docs: https://lnemail.net (see homepage for full docs)
Auth: Bearer token in Authorization header
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lnemail
- Version: 1.0.1
## 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-30T10:25:56.356Z
- Expires at: 2026-05-07T10:25:56.356Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lnemail)
- [Send to Agent page](https://openagent3.xyz/skills/lnemail/agent)
- [JSON manifest](https://openagent3.xyz/skills/lnemail/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lnemail/agent.md)
- [Download page](https://openagent3.xyz/downloads/lnemail)