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)",
},
],
},
}
7w4.net小葱技能。
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 filesudo dnf install msmtp
这个 Skill 质量中等,功能专一明确,可以快速发送邮件,操作相对简单。但文档内容偏简单,缺少详细的配置说明和故障排查指南,对不熟悉 SMTP 的用户不太友好。适合有经验的用户快速使用,新手可能需要额外查阅资料。