Postfix 从 PHP 发送纯文本电子邮件,但拒绝 html

Postfix 从 PHP 发送纯文本电子邮件,但拒绝 html

移至另一台主机后,我的网站停止发送电子邮件(UTF-8 HTML)。但我仍然可以发送如下文本电子邮件:

echo test | mail -t [email protected] -s test

php -r 'mail("[email protected]", "test", "test")'

我应该在哪里查找有关此行为的详细信息?

答案1

深入研究后,/var/spool/mail我们发现退回邮件的内容非常清楚:

SMTPUTF8 is required, but was not offered by host mxs.mail.ru [94.100.180.31]

因此,我必须添加以下行,smtputf8_enable = no/etc/postfix/main.cf使 HTML 电子邮件能够

相关内容