|
5#
楼主 |
发表于 2014-12-20 16:44:45
|
只看该作者
本人的解决方案是:
修改文件:catalog/controller/information/contact.php
查找:
$mail->setFrom($this->request->post['email']);
替换为:
$mail->setFrom($this->config->get('config_email'));
查找:
$mail->setText(strip_tags(html_entity_decode($this->request->post['enquiry'], ENT_QUOTES, 'UTF-8')));
替换为:
$mail->setText(strip_tags(html_entity_decode($this->language->get('text_from').$this->request->post['email']."\n\n".$this->request->post['enquiry'], ENT_QUOTES, 'UTF-8')));
然后找到语言包文件catalog/language/*/information/contact.php
增加一行:
$_['text_from'] = 'From:'; |
|