使用ssmtp通过邮件发送HTML电子邮件(sendmail)



我将ssmtp配置如下:

ssmtp.conf

root=postmaster
mailhub=smtp.office365.com:587
Hostname=localhost
FromLineOverride=YES
AuthUser=user@domain.com
AuthPass=mypassword
UseSTARTTLS=YES
TLS_CA_File=/etc/pki/tls/certs/ca-bundle.crt

重新确认

root:user@domain.com:smtp.office365.com:587

邮件代码为:

echo "HTML formatted message goes here like <b>Bold</b><br /><i>Italic</i>" | mail -s "$(echo -e "Subject nContent-Type: text/html")"  -r fromEmail@domain.com toemail@domain.com.

在配置ssmtp之前,它工作得很好,现在它正在发送类似<b>Bold</b>的HTML代码,但我希望类似于Bold使用带有邮件的ssmtp(sendmail)。

您需要设置额外的MIME-Version: 1.0标头:

echo "HTML formatted message goes here like <b>Bold</b><br /><i>Italic</i>" | mail -s "$(echo -e 'Subject nContent-Type: text/htmlnMime-Version: 1.0')"  -r fromEmail@domain.com toemail@domain.com

相关内容

  • 没有找到相关文章

最新更新