Introduction
# 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 [email protected] ```
Send with subject and headers:
```bash printf "To: [email protected]\nSubject: Quick update\n\nHey, the deploy is done." | msmtp [email protected] ```
## Options
- `--cc` -- carbon copy recipients - `--bcc` -- blind carbon copy recipients - `--attach <file>` -- attach a file
## Install
```bash sudo dnf install msmtp ```