邮件:从命令行发送带有附件的电子邮件

邮件:从命令行发送带有附件的电子邮件

我知道如何从命令行(脚本)发送电子邮件

echo "body" | mail -s "subject" [email protected]

是否也可以从命令行(脚本)发送附件?

heirloom-mailx我在 Debian Wheezy 上使用。

答案1

简单的方法:使用uuencodesharutils包的一部分)。任何格式或正文均不可用。只是一封带有附件和自定义主题的电子邮件。

uuencode /path/to/file file_name.ext | mail -s subject [email protected]

复杂的方法:使用sendmail和 html 格式:

v_mailpart="$(uuidgen)/$(hostname)"
echo "To: [email protected]
Subject: subject
Content-Type: multipart/mixed; boundary=\"$v_mailpart\"
MIME-Version: 1.0

This is a multi-part message in MIME format.
--$v_mailpart
Content-Type: text/html
Content-Disposition: inline

<html><body>Message text itself.</body></html>

--$v_mailpart
Content-Transfer-Encoding: base64
Content-Type: application/octet-stream; name=file_name.ext
Content-Disposition: attachment; filename=file_name.ext

`base64 /path/to/file`
 --$v_mailpart--" | /usr/sbin/sendmail -t

如果有多个附件,最后一部分可能会重复。

答案2

mutt不是mail你只需调用

echo "body" | mutt -s "subject" -a attachment0 attachment1 [...] -- [email protected]

这里attachmentN是您要附加的文件列表。

相关内容