✓ Verified 💻 Development ✓ Enhanced Data

Gmail Sender

Send emails via Gmail SMTP using Google App Password.

Rating
4.1 (270 reviews)
Downloads
1,461 downloads
Version
1.0.0

Overview

Send emails via Gmail SMTP using Google App Password.

Complete Documentation

View Source →

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:
bash
export GMAIL_USER="[email protected]"
export GMAIL_APP_PASSWORD="xxxxxxxxxxxxxxxx"

Installation

Clone or copy this skill to your OpenClaw skills directory:

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

Or use the CLI:

bash
clawhub install gmail-sender

Usage

bash
# Make executable
chmod +x gmail-send

# Send email
./gmail-send "[email protected]" "Subject" "Body text"

Examples

bash
# Simple notification
./gmail-send "[email protected]" "Server Alert" "CPU usage at 90%"

# Cron job integration
0 9 * * 1-5 ~/.openclaw/scripts/gmail-send "[email protected]" "Morning Report" "$(date)"

Python Module Usage

python
import subprocess

# Call from Python
subprocess.run([
    './gmail-send',
    '[email protected]',
    '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

Installation

Terminal bash

openclaw install gmail-sender
    
Copied!

💻Code Examples

3. Set environment variables:

3-set-environment-variables.sh
export GMAIL_USER="[email protected]"
export GMAIL_APP_PASSWORD="xxxxxxxxxxxxxxxx"
example.sh
# Make executable
chmod +x gmail-send

# Send email
./gmail-send "[email protected]" "Subject" "Body text"
example.sh
# Simple notification
./gmail-send "[email protected]" "Server Alert" "CPU usage at 90%"

# Cron job integration
0 9 * * 1-5 ~/.openclaw/scripts/gmail-send "[email protected]" "Morning Report" "$(date)"
example.py
import subprocess

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

Tags

#cli_utilities

Quick Info

Category Development
Model Gemini 2.0
Complexity One-Click
Author junkaixue
Last Updated 3/10/2026
🚀
Optimized for
Gemini 2.0
💎

Ready to Install?

Get started with this skill in seconds

openclaw install gmail-sender