如何使用Shell发送带有附件的邮件

时间:2019-06-14 10:17:27

标签: shell email scripting

我正在尝试使用sending mailshell script带有附件,但是我没有收到邮件。

Shell脚本

 #!/bin/bash

 $ echo "Mail Sent" | mail -s "a subject" -a "Report_by_Customer_20190614_131246.xls" test@gmail.com

1 个答案:

答案 0 :(得分:0)

使用mutt。添加您要附加的文件列表

echo "body" | mutt -s "subject" -a attachment0 attachment1 [...] -- test@gmail.com

here,您可以找到其他选项