# Send Agentmail Wrapper 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agentmail-wrapper",
    "name": "Agentmail Wrapper",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Shepherd217/agentmail-wrapper",
    "canonicalUrl": "https://clawhub.ai/Shepherd217/agentmail-wrapper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agentmail-wrapper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentmail-wrapper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agentmail-wrapper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:09:14.209Z",
      "expiresAt": "2026-05-06T17:09:14.209Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentmail-wrapper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentmail-wrapper",
        "contentDisposition": "attachment; filename=\"agentmail-wrapper-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agentmail-wrapper"
      },
      "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/agentmail-wrapper"
    },
    "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/agentmail-wrapper",
    "downloadUrl": "https://openagent3.xyz/downloads/agentmail-wrapper",
    "agentUrl": "https://openagent3.xyz/skills/agentmail-wrapper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentmail-wrapper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentmail-wrapper/agent.md"
  }
}
```
## Documentation

### AgentMail Wrapper

Version: 1.0.0
Author: Midas Skills
License: MIT

### Description

Verified email delivery integration. Send, track, schedule with multi-provider support (SendGrid, Mailgun, AWS SES, SMTP). GDPR/CAN-SPAM compliant.

### Value Proposition

Verified email agent integration. Send, track, schedule emails with verified delivery & unsubscribe compliance. SMTP, API, OAuth support.

### Category

email-integration

### Tags

email, delivery-tracking, multi-provider, compliance, automation

### Skill Type

integration

### Pricing

Free: $0
Pro: $44.99

### Key Features

✅ Multi-provider support (SendGrid, Mailgun, AWS SES, SMTP)
✅ Delivery tracking (open, click, bounce)
✅ Email verification
✅ Template management
✅ Scheduled sends
✅ Batch processing
✅ Unsubscribe management
✅ List hygiene (bounce handling)
✅ Compliance reporting
✅ OAuth support (Gmail)
✅ Reply tracking

### Use Cases

Transactional email delivery (signups, resets)
Email campaign automation
Scheduled email sequences
Delivery verification & tracking
List management (unsubscribes, bounces)
Multi-account SMTP management
Email template management
Compliance reporting

### Installation

npm install agentmail-wrapper
# or
pip install agentmail-wrapper

### Quick Start

const AgentMail = require('agentmail-wrapper');

const mail = new AgentMail({
  provider: 'sendgrid',  // or 'smtp', 'mailgun', 'aws-ses'
  apiKey: process.env.SENDGRID_API_KEY
});

await mail.send({
  to: 'user@example.com',
  subject: 'Welcome!',
  html: '<h1>Hello</h1>',
  trackClicks: true,
  trackOpens: true
});

### Repository

https://github.com/midas-skills/agentmail-wrapper

### Support

📧 support@midas-skills.com
🔗 Docs: https://docs.midas-skills.com/agentmail-wrapper
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Shepherd217
- 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-29T17:09:14.209Z
- Expires at: 2026-05-06T17:09:14.209Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agentmail-wrapper)
- [Send to Agent page](https://openagent3.xyz/skills/agentmail-wrapper/agent)
- [JSON manifest](https://openagent3.xyz/skills/agentmail-wrapper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agentmail-wrapper/agent.md)
- [Download page](https://openagent3.xyz/downloads/agentmail-wrapper)