skills$openclaw/smtp-send
xiwan2.5k

by xiwan

smtp-send – OpenClaw Skill

smtp-send is an OpenClaw Skills integration for security workflows. Send emails via SMTP with support for plain text, HTML, and attachments. Use when the user asks to send an email, email someone, or compose and send a message. Supports single recipients and can include file attachments. Works with Gmail, Outlook, Yahoo, QQ Mail, 163 Mail, and any SMTP server.

2.5k stars1.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026security

Skill Snapshot

namesmtp-send
descriptionSend emails via SMTP with support for plain text, HTML, and attachments. Use when the user asks to send an email, email someone, or compose and send a message. Supports single recipients and can include file attachments. Works with Gmail, Outlook, Yahoo, QQ Mail, 163 Mail, and any SMTP server. OpenClaw Skills integration.
ownerxiwan
repositoryxiwan/smtp-send
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xiwan/smtp-send
last updatedFeb 7, 2026

Maintainer

xiwan

xiwan

Maintains smtp-send in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
setup.md
3.4 KB
scripts
send_email.py
5.5 KB
_meta.json
269 B
SKILL.md
3.3 KB
SKILL.md

name: smtp-send description: Send emails via SMTP with support for plain text, HTML, and attachments. Use when the user asks to send an email, email someone, or compose and send a message. Supports single recipients and can include file attachments. Works with Gmail, Outlook, Yahoo, QQ Mail, 163 Mail, and any SMTP server.

SMTP Send

Send emails via SMTP with support for text, HTML formatting, and file attachments. Works with Gmail, Outlook, Yahoo, QQ Mail, 163 Mail, and any SMTP server.

Quick Start

Send a simple email:

python3 scripts/send_email.py \
  --to recipient@example.com \
  --subject "Meeting Tomorrow" \
  --body "Hi, let's meet at 2pm tomorrow."

Send HTML email:

python3 scripts/send_email.py \
  --to recipient@example.com \
  --subject "Weekly Report" \
  --body "<h1>Report</h1><p>Here are the updates...</p>" \
  --html

Send with attachments:

python3 scripts/send_email.py \
  --to recipient@example.com \
  --subject "Documents" \
  --body "Please find the attached files." \
  --attachments report.pdf,data.csv

Setup

One-time configuration required. Create ~/.smtp_config:

{
  "host": "smtp.gmail.com",
  "port": 587,
  "user": "your-email@gmail.com",
  "password": "your-app-password",
  "from": "your-email@gmail.com",
  "use_ssl": false
}

For Gmail users: Must use App Password (not regular password). See setup.md for detailed instructions on generating app passwords for Gmail, Yahoo, QQ Mail, 163 Mail, and other providers.

Alternatively, use environment variables (see setup.md).

Parameters

  • --to: Recipient email address (required)
  • --subject: Email subject line (required)
  • --body: Email body content (required)
  • --html: Send as HTML email (optional flag)
  • --attachments: Comma-separated file paths (optional)

Common Patterns

User provides recipient and content

When the user says "email john@example.com about the meeting," extract the recipient and compose appropriate subject/body.

User provides only content

If the user says "send an email saying the report is ready" without specifying a recipient, ask who to send it to.

File attachments

When the user mentions "attach the file" or "send the document," use --attachments with the file path. Multiple files can be separated by commas.

HTML formatting

Use --html when the user wants formatted content (headings, lists, emphasis) or explicitly asks for HTML email.

Error Handling

Missing config: If ~/.smtp_config not found and environment variables not set, the script will print an example config and exit. Guide the user to create the config file with their SMTP settings.

Authentication failed: Usually means incorrect password or need to use app password. Direct user to setup.md for provider-specific instructions.

Missing attachments: Script warns but continues sending email without that attachment.

Connection timeout: Check SMTP host/port settings or network connectivity.

Security

  • Credentials stored in ~/.smtp_config (file permissions should be 600)
  • Or use environment variables for better security
  • App passwords recommended over regular passwords
  • Config file should not be committed to version control
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

- Credentials stored in `~/.smtp_config` (file permissions should be 600) - Or use environment variables for better security - App passwords recommended over regular passwords - Config file should not be committed to version control

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install smtp-send?

Run openclaw add @xiwan/smtp-send in your terminal. This installs smtp-send into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xiwan/smtp-send. Review commits and README documentation before installing.