Skip to main content

email-send

Send a quick email via SMTP using `msmtp` without opening a full mail client.

Jump to install

Source facts

Repository
ShoumikSaha/agent-skill-security
Last source activity
May 12, 2026 at 23:24
Detected SKILL.md language
English
Stars
17
Forks
2

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
3 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
email-send
description
Send a quick email via SMTP using `msmtp` without opening a full mail client.
metadata
{"openclaw":{"emoji":"📧","requires":{"bins":"[Truncated]"},"install":["[Truncated]"]}}
# 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: ```bash echo "Meeting at 3pm tomorrow." | msmtp recipient@example.com ``` Send with subject and headers: ```bash 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 ```bash sudo dnf install msmtp ```
View on GitHub