# Email Send

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

- Skill: `modbender/email-send` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add modbender/email-send`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/email-send/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/email-send

---


# 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
```

