我想用脚本通过电子邮件将 html 文件和一些图像发送给某人。标准答案似乎是使用mutt
。但是我目前还没有安装它。
- 还有其他方法可以做到吗?
- 安装 mutt 是否存在安全漏洞?
- 我不需要功能齐全的邮件阅读器,我只想发送一些附件,还有其他解决方案吗?
答案1
答案2
要使用 mailx 发送附件:
(uuencode file1.png file1.png
uuencode file2.html file2.html
echo "this is in the message body") | mailx -s "This is the Subject" [email protected]
uuencode 包含在 sharutils 包中。