我只通过联系人查询表单获得用户的消息。 我正在尝试在查询电子邮件中添加他们的姓名和电子邮件。我没有得到确切的文件要更改。
有谁知道怎么做?
答案 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'];