← Back to Skills Marketplace
jaskies

Mail Sender SMTP

by Trần Anh Vũ · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
292
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install mail-sender-vutran
Description
Send emails via SMTP. Use when the user needs to send an email with a custom subject and body. This skill requires SMTP configuration (server, port, user, pa...
README (SKILL.md)

Mail Sender

This skill allows the agent to send emails using a standard SMTP server (like Gmail, Outlook, etc.).

Setup

The skill uses the following environment variables for configuration:

  • SMTP_SERVER: (e.g., smtp.gmail.com)
  • SMTP_PORT: (e.g., 587)
  • SMTP_USER: Your email address
  • SMTP_PASS: Your app-specific password
  • FROM_EMAIL: The sender's email (optional, defaults to SMTP_USER)

Usage

To send an email, use the bundled script:

python3 skills/public/mail-sender/scripts/send.py \
  --to-email "[email protected]" \
  --subject "Hello from OpenClaw" \
  --body "This is a test email sent via the mail-sender skill."

Security Note

For Gmail, use an App Password instead of your primary account password. Never hardcode credentials in the script or conversation history.

Usage Guidance
This skill appears to do exactly what it says: run the included Python script to send SMTP email. Before installing, verify the source/publisher (no homepage provided), and provide credentials securely (use env vars or CLI args, not chat). Use an app-specific password or a dedicated sending account rather than your primary mailbox. Ask the publisher to update the registry metadata to declare the required env vars (SMTP_SERVER, SMTP_PORT, SMTP_USER, SMTP_PASS, FROM_EMAIL) for transparency. If you need stronger isolation, run the script in a sandboxed environment or dedicated sending account to limit exposure if credentials are leaked.
Capability Analysis
Type: OpenClaw Skill Name: mail-sender-vutran Version: 1.0.0 The mail-sender skill is a straightforward utility for sending emails via SMTP. The implementation in scripts/send.py uses the standard Python smtplib library with TLS support and correctly handles configuration through environment variables or command-line arguments. No evidence of data exfiltration, hardcoded credentials, or malicious prompt injection was found.
Capability Assessment
Purpose & Capability
The name/description, SKILL.md, and the included Python script all align: the skill sends email via SMTP and requires SMTP server, port, user, and password. However, the registry metadata lists no required environment variables even though the SKILL.md and script clearly rely on SMTP-related env vars — a transparency mismatch.
Instruction Scope
SKILL.md instructs only how to configure SMTP creds and run the bundled script. The script only reads SMTP-related environment variables/arguments and connects to the specified SMTP server; it does not access other files, system config, or external endpoints beyond the provided SMTP host.
Install Mechanism
There is no install spec (instruction-only with a bundled script). No third-party downloads or package installs are requested, which keeps installation risk low.
Credentials
The skill legitimately requires sensitive credentials (SMTP_USER and SMTP_PASS). That is proportionate for sending email, but the registry metadata failing to declare these required env vars is concerning for transparency. Users should provide these secrets securely (env vars or runtime args) and avoid embedding them in chat history.
Persistence & Privilege
The skill is not marked 'always', does not modify other skills or system configuration, and does not request persistent/system-wide privileges. It behaves as an on-demand tool.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install mail-sender-vutran
  3. After installation, invoke the skill by name or use /mail-sender-vutran
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial version of SMTP mail sender skill
Metadata
Slug mail-sender-vutran
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Mail Sender SMTP?

Send emails via SMTP. Use when the user needs to send an email with a custom subject and body. This skill requires SMTP configuration (server, port, user, pa... It is an AI Agent Skill for Claude Code / OpenClaw, with 292 downloads so far.

How do I install Mail Sender SMTP?

Run "/install mail-sender-vutran" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Mail Sender SMTP free?

Yes, Mail Sender SMTP is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Mail Sender SMTP support?

Mail Sender SMTP is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Mail Sender SMTP?

It is built and maintained by Trần Anh Vũ (@jaskies); the current version is v1.0.0.

💬 Comments