Send a quick email via SMTP using `msmtp` without opening a full mail client.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill email-send --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Email Send?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-email-send)More formats (shields.io, HTML) on the badges page.
---
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:
```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
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Designs system architecture, component specifications, and technical integration strategy. Use when: designing solutions, system architecture, technology stack, or integration approaches.