# Send QQ Mail 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": "qqmail",
    "name": "QQ Mail",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pdpaer/qqmail",
    "canonicalUrl": "https://clawhub.ai/pdpaer/qqmail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/qqmail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/qqmail.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "qqmail",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:38:08.369Z",
      "expiresAt": "2026-05-14T17:38:08.369Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmail",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=qqmail",
        "contentDisposition": "attachment; filename=\"qqmail-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "qqmail"
      },
      "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/qqmail"
    },
    "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/qqmail",
    "downloadUrl": "https://openagent3.xyz/downloads/qqmail",
    "agentUrl": "https://openagent3.xyz/skills/qqmail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/qqmail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/qqmail/agent.md"
  }
}
```
## Documentation

### QQ Mail Manager

Manage QQ邮箱 via standard IMAP/SMTP protocols using Python scripts.

### Prerequisites

The user must enable IMAP/SMTP in QQ Mail settings and obtain an authorization code (授权码):

Log in to mail.qq.com → Settings (设置) → Account (账户)
Enable IMAP/SMTP service
Generate an authorization code (授权码) — this is NOT the QQ password

### Configuration

The skill reads credentials from environment variables:

QQMAIL_USER — QQ email address (e.g. 123456789@qq.com)
QQMAIL_AUTH_CODE — Authorization code from QQ Mail settings (授权码)

### Read recent emails

python3 {baseDir}/scripts/qqmail.py inbox --limit 10

Shows: sender, subject, date, and a text preview of each email.

### Read a specific email by index

python3 {baseDir}/scripts/qqmail.py read --index 1

Shows the full email content (text body).

### Send an email

python3 {baseDir}/scripts/qqmail.py send --to "recipient@example.com" --subject "Hello" --body "Email content here"

### Send with attachment

python3 {baseDir}/scripts/qqmail.py send --to "recipient@example.com" --subject "Report" --body "See attached" --attachment "/path/to/file.pdf"

### Search emails

python3 {baseDir}/scripts/qqmail.py search --subject "keyword"
python3 {baseDir}/scripts/qqmail.py search --from "sender@example.com"
python3 {baseDir}/scripts/qqmail.py search --since "2026-01-01"
python3 {baseDir}/scripts/qqmail.py search --subject "meeting" --since "2026-02-01" --limit 5

### List mail folders

python3 {baseDir}/scripts/qqmail.py folders

### Read from a specific folder

python3 {baseDir}/scripts/qqmail.py inbox --folder "Sent Messages" --limit 5

### Error Handling

If authentication fails: verify QQMAIL_USER and QQMAIL_AUTH_CODE are set correctly.
If IMAP is not enabled: guide the user to enable it in QQ Mail settings.
Connection errors may indicate network issues or proxy requirements.

### Notes

QQ Mail IMAP server: imap.qq.com:993 (SSL)
QQ Mail SMTP server: smtp.qq.com:465 (SSL)
All scripts use Python 3 standard library only (no pip install needed).
Email content is decoded with charset detection for proper Chinese display.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: pdpaer
- 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-05-07T17:38:08.369Z
- Expires at: 2026-05-14T17:38:08.369Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/qqmail)
- [Send to Agent page](https://openagent3.xyz/skills/qqmail/agent)
- [JSON manifest](https://openagent3.xyz/skills/qqmail/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/qqmail/agent.md)
- [Download page](https://openagent3.xyz/downloads/qqmail)