Jump to related tools in the same category or review the original source on GitHub.

Communication @xejrax Updated 2/26/2026

📧 Email Send OpenClaw Skill - ClawHub

Do you want your AI agent to automate Email Send workflows? This free skill from ClawHub helps with communication tasks without building custom tools from scratch.

What this skill does

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

Install

npx clawhub@latest install email-send

Full SKILL.md

Open original
namedescription
email-sendSend a quick email via SMTP using `msmtp` without opening a full mail client.

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 [email protected]

Send with subject and headers:

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

sudo dnf install msmtp
Original URL: https://github.com/openclaw/skills/blob/main/skills/xejrax/email-send

Related skills

If this matches your use case, these are close alternatives in the same category.