Install
openclaw skills install email-sendSend a quick email via SMTP using `msmtp` without opening a full mail client.
openclaw skills install email-sendSend a quick email via SMTP without opening the full himalaya client. Requires SMTP_HOST, SMTP_PORT, SMTP_USER, SMTP_PASS env vars.
Send a basic email:
echo "Meeting at 3pm tomorrow." | msmtp recipient@example.com
Send with subject and headers:
printf "To: recipient@example.com\nSubject: Quick update\n\nHey, the deploy is done." | msmtp recipient@example.com
--cc -- carbon copy recipients--bcc -- blind carbon copy recipients--attach <file> -- attach a filesudo dnf install msmtp