{
  "schemaVersion": "1.0",
  "item": {
    "slug": "send-email",
    "name": "send-email",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/fontStep/send-email",
    "canonicalUrl": "https://clawhub.ai/fontStep/send-email",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/send-email",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=send-email",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "send_email.py",
      "send_email.sh",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/send-email"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/send-email",
    "agentPageUrl": "https://openagent3.xyz/skills/send-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/send-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/send-email/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Send Email",
        "body": "Send emails via the Python script. SMTP settings are injected by OpenClaw at runtime when the script runs (from ~/.openclaw/openclaw.json → skills.entries.send-email.env). Do not read any config file (e.g. ~/.openclaw/openclaw.json or workspace/openclaw.json) — that would expose credentials in tool output. Just run the script; env is injected automatically. Do not use ~/.msmtprc."
      },
      {
        "title": "Configuration",
        "body": "Configure in ~/.openclaw/openclaw.json:\n\n\"skills\": {\n  \"entries\": {\n    \"send-email\": {\n      \"enabled\": true,\n      \"env\": {\n        \"EMAIL_SMTP_SERVER\": \"smtp.163.com\",\n        \"EMAIL_SMTP_PORT\": \"465\",\n        \"EMAIL_SENDER\": \"your-email@163.com\",\n        \"EMAIL_SMTP_PASSWORD\": \"YOUR_AUTH_CODE\"\n      }\n    }\n  }\n}\n\nVariableDescriptionEMAIL_SMTP_SERVERSMTP server, e.g. smtp.163.com, smtp.gmail.comEMAIL_SMTP_PORTPort, 465 (SSL) or 587 (TLS)EMAIL_SENDERSender email addressEMAIL_SMTP_PASSWORDAuthorization code / app password (163/QQ: auth code; Gmail: App Password)"
      },
      {
        "title": "Agent instructions",
        "body": "Credentials: Never read config files. OpenClaw injects skills.entries.send-email.env when the script runs — do not use the read tool on ~/.openclaw/openclaw.json or workspace/openclaw.json (exposes secrets). If the skill is enabled, assume env is configured; do not ask the user for passwords. Do not use ~/.msmtprc.\nSend mail: Run the script under workspace (do not use the path under node_modules):\npython3 ~/.openclaw/workspace/skills/send-email/send_email.py \"recipient\" \"Subject\" \"Body\"\n\n\nAttachment: python3 ~/.openclaw/workspace/skills/send-email/send_email.py \"recipient\" \"Subject\" \"Body\" \"/path/to/file.pdf\""
      },
      {
        "title": "Usage examples",
        "body": "python3 ~/.openclaw/workspace/skills/send-email/send_email.py 'recipient@example.com' 'Subject' 'Body text'\npython3 ~/.openclaw/workspace/skills/send-email/send_email.py 'recipient@example.com' 'Subject' 'Body' '/path/to/file.pdf'"
      },
      {
        "title": "SMTP reference",
        "body": "163: smtp.163.com:465, requires authorization code (not login password)\nGmail: smtp.gmail.com:587, requires App Password\nQQ: smtp.qq.com:465, requires authorization code"
      },
      {
        "title": "Troubleshooting",
        "body": "Authentication failed: Check that EMAIL_SMTP_PASSWORD is the authorization code or App Password.\nConnection failed: Check EMAIL_SMTP_SERVER and EMAIL_SMTP_PORT."
      }
    ],
    "body": "Send Email\n\nSend emails via the Python script. SMTP settings are injected by OpenClaw at runtime when the script runs (from ~/.openclaw/openclaw.json → skills.entries.send-email.env). Do not read any config file (e.g. ~/.openclaw/openclaw.json or workspace/openclaw.json) — that would expose credentials in tool output. Just run the script; env is injected automatically. Do not use ~/.msmtprc.\n\nConfiguration\n\nConfigure in ~/.openclaw/openclaw.json:\n\n\"skills\": {\n  \"entries\": {\n    \"send-email\": {\n      \"enabled\": true,\n      \"env\": {\n        \"EMAIL_SMTP_SERVER\": \"smtp.163.com\",\n        \"EMAIL_SMTP_PORT\": \"465\",\n        \"EMAIL_SENDER\": \"your-email@163.com\",\n        \"EMAIL_SMTP_PASSWORD\": \"YOUR_AUTH_CODE\"\n      }\n    }\n  }\n}\n\nVariable\tDescription\nEMAIL_SMTP_SERVER\tSMTP server, e.g. smtp.163.com, smtp.gmail.com\nEMAIL_SMTP_PORT\tPort, 465 (SSL) or 587 (TLS)\nEMAIL_SENDER\tSender email address\nEMAIL_SMTP_PASSWORD\tAuthorization code / app password (163/QQ: auth code; Gmail: App Password)\nAgent instructions\nCredentials: Never read config files. OpenClaw injects skills.entries.send-email.env when the script runs — do not use the read tool on ~/.openclaw/openclaw.json or workspace/openclaw.json (exposes secrets). If the skill is enabled, assume env is configured; do not ask the user for passwords. Do not use ~/.msmtprc.\nSend mail: Run the script under workspace (do not use the path under node_modules):\npython3 ~/.openclaw/workspace/skills/send-email/send_email.py \"recipient\" \"Subject\" \"Body\"\n\nAttachment: python3 ~/.openclaw/workspace/skills/send-email/send_email.py \"recipient\" \"Subject\" \"Body\" \"/path/to/file.pdf\"\nUsage examples\npython3 ~/.openclaw/workspace/skills/send-email/send_email.py 'recipient@example.com' 'Subject' 'Body text'\npython3 ~/.openclaw/workspace/skills/send-email/send_email.py 'recipient@example.com' 'Subject' 'Body' '/path/to/file.pdf'\n\nSMTP reference\n163: smtp.163.com:465, requires authorization code (not login password)\nGmail: smtp.gmail.com:587, requires App Password\nQQ: smtp.qq.com:465, requires authorization code\nTroubleshooting\nAuthentication failed: Check that EMAIL_SMTP_PASSWORD is the authorization code or App Password.\nConnection failed: Check EMAIL_SMTP_SERVER and EMAIL_SMTP_PORT."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fontStep/send-email",
    "publisherUrl": "https://clawhub.ai/fontStep/send-email",
    "owner": "fontStep",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/send-email",
    "downloadUrl": "https://openagent3.xyz/downloads/send-email",
    "agentUrl": "https://openagent3.xyz/skills/send-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/send-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/send-email/agent.md"
  }
}