Skip to main content

email-send

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

跳到安装

来源信息

仓库
ShoumikSaha/agent-skill-security
最近来源活动
2026年5月12日 23:24
检测到的 SKILL.md 语言
英语
星标
17
分支
2

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
3 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
email-send
description
Send a quick email via SMTP using `msmtp` without opening a full mail client.
metadata
{"openclaw":{"emoji":"📧","requires":{"bins":"[Truncated]"},"install":["[Truncated]"]}}
# 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 recipient@example.com ``` Send with subject and headers: ```bash printf "To: recipient@example.com\nSubject: Quick update\n\nHey, the deploy is done." | msmtp recipient@example.com ``` ## Options - `--cc` -- carbon copy recipients - `--bcc` -- blind carbon copy recipients - `--attach <file>` -- attach a file ## Install ```bash sudo dnf install msmtp ```
在 GitHub 查看