файл catalog\controller\information\contact.php
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) {
$mail = new Mail();
$mail->protocol = $this->config->get('config_mail_protocol');
$mail->parameter = $this->config->get('config_mail_parameter');
$mail->smtp_hostname = $this->config->get('config_mail_smtp_hostname');
$mail->smtp_username = $this->config->get('config_mail_smtp_username');
$mail->smtp_password = html_entity_decode($this->config->get('config_mail_smtp_password'), ENT_QUOTES, 'UTF-8');
$mail->smtp_port = $this->config->get('config_mail_smtp_port');
$mail->smtp_timeout = $this->config->get('config_mail_smtp_timeout');
$mail->setTo($this->config->get('config_email'));
$mail->setFrom($this->request->post['email']);
$mail->setSender(html_entity_decode($this->request->post['name'], ENT_QUOTES, 'UTF-8'));
$mail->setSubject(html_entity_decode(sprintf($this->language->get('email_subject'), $this->request->post['name']), ENT_QUOTES, 'UTF-8'));
$message = '<p>Имя: '.$this->request->post['name'].'</p>';//добавляем имя
$message .= '<p>Email: '.$this->request->post['email'].'</p>';//добавляем email
$message .= '<p>Cообщение: '.$this->request->post['enquiry'].'</p>';// и сообщение
$mail->setHtml($message);//меняем метод для отправки html
$mail->send();
$this->response->redirect($this->url->link('information/contact/success'));
}
в писме будет - имя, email и сообщение