客户通过zencart 的contact us功能可以提交到卖家指定的电子邮件,卖家后台可以方便设置电子邮件,其中电子邮件发送方式选择相当丰富,有php , sendmail,sendmail-f,smtp,smtpauth,Qmail.等多种方式,最近客户提到,使用Php的发送方式无法发送邮件。
解决:
查找文件:include/languages/english/contact_us.php
define(‘EMAIL_SUBJECT’, ‘Message from ‘ . STORE_NAME);
STORE_NAME 值为空,导致发送错误。
解决方法,给STORE_NAME定义值。