Opencart在联系电子邮件中添加姓名和电子邮件以及消息

时间:2013-02-16 07:32:12

标签: email opencart contact

我只通过联系人查询表单获得用户的消息。 我正在尝试在查询电子邮件中添加他们的姓名和电子邮件。我没有得到确切的文件要更改。

有谁知道怎么做?

1 个答案:

答案 0 :(得分:4)

目录/ controller / information / contact.php 中找到

$mail->setText(strip_tags(html_entity_decode($this->request->post['enquiry'], ENT_QUOTES, 'UTF-8')));

$this->request->post['enquiry']替换为$msg_body

在此行添加之前,以下行

$msg_body = "Sender's Name : ".$this->request->post['name']."  Sender's email : ".$this->request->post['email']. "  Enquiry :".$this->request->post['enquiry'];