linux shell 发送email 附件

方法一:发送单个附件(正文乱码)

mutt -s "mail subject" -a output_email.html -- [email protected] < output_email.html

或者

cat output_email.html | mutt -s "mail subject" -a output_email.html -- [email protected]

效果截图:

linux shell 发送email 附件_第1张图片

邮件正文乱码


方法二:发送多个附件(正文不乱码)


效果图:

linux shell 发送email 附件_第2张图片



推荐网站:

Sending files as mail attachments

Sending email with attachments on UNIX systems

Linux自动下发送HTML格式并带附件的邮件




你可能感兴趣的:(linux,shell)