我明白髮送HTML消息attachement(.PDF)我怎麼可以發送HTML消息sendmail
做:從殼牌
(
echo "From: [email protected]";
echo "To: [email protected]";
echo "Subject: this is my subject";
echo "Content-Type: text/html";
echo "MIME-Version: 1.0";
echo "";
echo "My <b>HTML message<\b> goes here!";
) | sendmail -t
我還管理與mail
做
uuencode file.pdf file.pdf | mail -s "my subject" [email protected]
發送一個附件
但我未能發送帶附件的HTML郵件(.pdf)。
注意,我無法安裝mutt
或mpack
(使用自制)到目前爲止我很樂意與mail
,mailx
或sendmail
有效的解決方案。我在Mac OS X 10.11上
可能重複的[Bash:發送HTML與附加文件?](http://stackoverflow.com/questions/10479340/bash-sending-html-with-an-attached-file) – tripleee
我的問題確實是一個重複。我正在投票結束。謝謝! –