我在 Solaris 上的 sendmail 8.14.4 中遇到了一个奇怪的行为。
我使用 ksh 脚本成功发送邮件,如下所示:
( echo "Subject: Test"
echo "Date: 20131004"
) | sendmail -f me@somewhere.com -t coworker@somewhere.com
但是没有内容。
如果我使用:
( echo "Subject: Test"
echo "Date 20131004"
) | sendmail -f me@somewhere.com -t coworker@somewhere.com
有内容....
为什么会这样:屏蔽内容?
谢谢回答 :-) !
编辑 1:好的,我找到了一种解决方法,将内容类型设置为“plain/html”并添加两个 html 节点.. 它可以工作。但这是一种解决方法...