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

### Gmail Sender Skill

Send emails via Gmail SMTP using Google App Password. Generic utility for alerts, notifications, and automated reports.

### Overview

A simple CLI tool to send emails through Gmail SMTP. No external dependencies beyond Python standard library.

### Requirements

Python 3.6+
Gmail account with App Password enabled

### Setup

Enable 2-Factor Authentication on your Google Account:

Go to https://myaccount.google.com/security



Generate an App Password:

Go to https://myaccount.google.com/apppasswords
Select "Mail" as the app
Copy the 16-character password (no spaces)



Set environment variables:

export GMAIL_USER="your-email@gmail.com"
export GMAIL_APP_PASSWORD="xxxxxxxxxxxxxxxx"

### Installation

Clone or copy this skill to your OpenClaw skills directory:

cp -r gmail-sender ~/.openclaw/workspace/skills/

Or use the CLI:

clawhub install gmail-sender

### Usage

# Make executable
chmod +x gmail-send

# Send email
./gmail-send "recipient@example.com" "Subject" "Body text"

### Examples

# Simple notification
./gmail-send "admin@example.com" "Server Alert" "CPU usage at 90%"

# Cron job integration
0 9 * * 1-5 ~/.openclaw/scripts/gmail-send "you@example.com" "Morning Report" "$(date)"

### Python Module Usage

import subprocess

# Call from Python
subprocess.run([
    './gmail-send',
    'recipient@example.com',
    'Subject',
    'Body'
], env={'GMAIL_USER': '...', 'GMAIL_APP_PASSWORD': '...'})

### Security Notes

Never commit App Passwords to version control
Use environment variables, never hardcode credentials
App Passwords are 16 characters (format: xxxx xxxx xxxx xxxx)
Revoke app passwords if compromised

### Troubleshooting

"535 5.7.8 Username and Password not accepted"

Verify App Password is correct (16 chars, no spaces)
Make sure 2FA is enabled on your Google account

"Could not connect"

Check firewall/network settings
Gmail may block connections from unknown apps

### License

MIT

### Author

junkaixue
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: junkaixue
- 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-30T00:43:32.417Z
- Expires at: 2026-05-07T00:43:32.417Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gmail-sender)
- [Send to Agent page](https://openagent3.xyz/skills/gmail-sender/agent)
- [JSON manifest](https://openagent3.xyz/skills/gmail-sender/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gmail-sender/agent.md)
- [Download page](https://openagent3.xyz/downloads/gmail-sender)