skills$openclaw/email-send
xejrax6.0k

by xejrax

email-send – OpenClaw Skill

email-send is an OpenClaw Skills integration for data analytics workflows. Send a quick email via SMTP using `msmtp` without opening a full mail client.

6.0k stars8.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameemail-send
descriptionSend a quick email via SMTP using `msmtp` without opening a full mail client. OpenClaw Skills integration.
ownerxejrax
repositoryxejrax/email-send
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xejrax/email-send
last updatedFeb 7, 2026

Maintainer

xejrax

xejrax

Maintains email-send in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
272 B
CLAUDE.md
303 B
SKILL.md
1.1 KB
SKILL.md

name: email-send description: "Send a quick email via SMTP using msmtp without opening a full mail client." metadata: { "openclaw": { "emoji": "📧", "requires": { "bins": ["msmtp"] }, "install": [ { "id": "dnf", "kind": "dnf", "package": "msmtp", "bins": ["msmtp"], "label": "Install msmtp (dnf)", }, ], }, }

Email Send Skill

Send a quick email via SMTP without opening the full himalaya client. Requires SMTP_HOST, SMTP_PORT, SMTP_USER, SMTP_PASS env vars.

Sending Email

Send a basic email:

echo "Meeting at 3pm tomorrow." | msmtp recipient@example.com

Send with subject and headers:

printf "To: recipient@example.com\nSubject: Quick update\n\nHey, the deploy is done." | msmtp recipient@example.com

Options

  • --cc -- carbon copy recipients
  • --bcc -- blind carbon copy recipients
  • --attach <file> -- attach a file

Install

sudo dnf install msmtp
README.md

No README available.

Permissions & Security

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

Requirements

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

FAQ

How do I install email-send?

Run openclaw add @xejrax/email-send in your terminal. This installs email-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/xejrax/email-send. Review commits and README documentation before installing.