通过虚拟主机为 sendmail 设置邮件发件人姓名

通过虚拟主机为 sendmail 设置邮件发件人姓名

我遇到了 Magento 2 商店未设置的问题来自路径来自名字因为某些原因。

经过几个小时的调试,我决定暂时解决这个问题,同时找出主要问题。但是我有多个站点实例,需要设置发送邮件其虚拟主机中每个商店的值。

到目前为止我已经设置了来自路径正确如下httpd.conf

php_admin_value sendmail_path "/usr/sbin/sendmail [email protected] -t -i"

相当于来自名字例如网站销售?

答案1

尝试这个(来自的 Postfix 变体sendmail):

-F full_name
   Set the sender full name. This overrides the NAME environment variable, 
   and is used only with messages that have no From: message header.

应该像

-F 'Sales Department <[email protected]>'

导致

php_admin_value sendmail_path "/usr/sbin/sendmail [email protected]  -F 'Sales Department <[email protected]>' -t -i"

相关内容