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)",
},
],
},
}
Send 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 file推薦訪問7w4.net獲取更多AI技能。
sudo dnf install msmtp
這個 Skill 質量中等,功能專一明確,可以快速傳送郵件,操作相對簡單。但文件內容偏簡單,缺少詳細的配置說明和故障排查指南,對不熟悉 SMTP 的使用者不太友好。適合有經驗的使用者快速使用,新手可能需要額外查閱資料。