находим файл
catalog/controller/product/product.php, находим строку
$this->model_catalog_review->addReview($this->request->get['product_id'], $this->request->post);
,
после вставляем
$mail = new Mail();$mail->protocol = $this->config->get('config_mail_protocol');$mail->parameter = $this->config->get('config_mail_parameter');$mail->hostname = $this->config->get('config_smtp_host');$mail->username = $this->config->get('config_smtp_username');$mail->password = $this->config->get('config_smtp_password');$mail->port = $this->config->get('config_smtp_port');$mail->timeout = $this->config->get('config_smtp_timeout'); $mail->setTo($this->config->get('config_email'));$mail->setFrom('new_review@' . parse_url($this->config->get('config_url'), PHP_URL_HOST));$mail->setSender($this->request->post['name']);$mail->setSubject(html_entity_decode(sprintf('new_review', $this->request->post['name']), ENT_QUOTES, 'UTF-8'));$mail->setText(strip_tags(html_entity_decode($this->request->post['text'], ENT_QUOTES, 'UTF-8')));$mail->send();