这就是我尝试使用 sendmail 命令发送电子邮件的方式。
正文中包含 html 文件和附加的 zip 文件。
收到的邮件已损坏(没有正文且附件已损坏)。
(
echo "From: xxxx";
echo "To: [email protected]";
echo "Subject: subject";
#echo "Content-Type: text/html";
echo "Content-Type: multipart/mixed; boundary=MAIL_BOUNDARY"
echo "MIME-Version: 1.0";
echo "--MAIL_BOUNDARY"
echo $message
cat myHtml.html
echo "--MAIL_BOUNDARY"
echo "Content-Type: application/zip"
echo "Content-Transfer-Encoding: base64"
echo "Content-Disposition: attachment; filename=zipfile.zip"
base64 zipfile.zip
echo "--MAIL_BOUNDARY--"
)> email.body
cat email.body | sendmail -t
答案1
这就是我从门外获取带有附件的消息的方式。我必须以 root 身份执行它,否则 senmail 会拒绝不是发送邮件的用户的“发件人:”(-f 选项)。我已经用这里的文档替换了 cat 的 echos 。
message="You will find zipfile.zip attached"
(
cat << --OEF--
Subject: $message
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="MAIL_BOUNDARY"
--MAIL_BOUNDARY
Content-Type: multipart/alternative;
boundary="MAIL_BOUNDARY2"
--MAIL_BOUNDARY2
Content-Type: text/plain; charset=utf-8
$message
--MAIL_BOUNDARY2
Content-Type: text/html; charset=utf-8
--OEF--
cat myHtml.html
cat << --OEF--
--MAIL_BOUNDARY2--
--MAIL_BOUNDARY
Content-Type: application/zip; name=zipfile.zip
Content-Disposition: attachment; filename=zipfile.zip
Content-Transfer-Encoding: base64
--OEF--
base64 zipfile.zip
cat << --OEF--
--MAIL_BOUNDARY--
--OEF--
) | sendmail -f '[email protected]' [email protected]