โ† All skills
Tencent SkillHub ยท Productivity

Gmail Sender

Send emails via Gmail SMTP using a Python CLI tool with Google App Password for alerts, notifications, and automated reports.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Send emails via Gmail SMTP using a Python CLI tool with Google App Password for alerts, notifications, and automated reports.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Config
  • SKILL.md Primary doc
  • _meta.json Config