如何更改电子邮件的 URL 来源
如何将“FROM URL”更改为我的“网站名称”?我尝试通过交易电子邮件更改它
System -> Configuration -> Store Email Addresses
,但没有什么可以改变这一点。
How to change the "FROM URL" to my "website name"? I tried to change it via
System -> Configuration -> Store Email Addresses
and Transactional Email, but there is nothing which can change that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个 php 邮件设置,深入机器内部。您拥有该盒子还是使用共享主机?也许让这个问题更通用,并考虑尝试另一个应用程序,例如 Wordpress,看看它是托管还是 Magento。
This is a php mail setting, deep in the innards of the machine. Do you own the box or are you on shared hosting? Maybe make this question more generic and consider trying another app, e.g. Wordpress, to see if it is hosting or Magento.
进入系统->配置->联系方式
因此,您可以设置“发送电子邮件至”字段
Go to System -> Configuration -> Contacts
so, you can set 'Send Emails To' field
我通过以下三个步骤解决了这个问题:
在第 #683 行对 php.ini 进行更改
sendmail_path = /usr/sbin/sendmail -t -i [电子邮件]受保护] -nMY 公司名称
更改了 lib/Zend/mail.php 行 #686
$this->_storeHeader('From', '[电子邮件]受保护]', true);
在 cPanel 中创建了同名的电子邮件帐户“[电子邮件受保护]”
I have resolved this issue by following these three steps:
Make changes to php.ini on line #683
sendmail_path = /usr/sbin/sendmail -t -i [email protected] -nMY CompanyName
Changed lib/Zend/mail.php line #686
$this->_storeHeader('From', '[email protected]', true);
In cPanel created email account with the same name "[email protected]"