2

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

有谁知道该怎么做?

4

1 回答 1

5

目录/控制器/信息/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'];
于 2013-02-16T09:01:35.547 回答