当客服不在线的时候,客户可以通过邮件的方式给我们留言,发送到我们的公司邮箱,也就是magento的contact us 功能,在使用的时候会遇到一种情况:Unable to submit your request. Please, try again later
当提交按钮点击后,执行的是:
/app/code/core/Mage/Contacts/controllers/IndexController.php
public
function
postAction()
通过断点监测,程序到这里就抛出异常
if (!$mailTemplate->getSentSuccess()) {
throw new Exception();
}
throw new Exception();
}
到最后发现,是服务器的问题,IMAP电子邮件系统函数库不支持
如果您的邮箱在后台设置了,但是发送不了邮件,可以下载一个php探针,下载地址为:php探针
测试看看IMAP电子邮件系统函数库是否支持!