Skip to content

Instantly share code, notes, and snippets.

@helart
Last active August 15, 2020 18:40
Show Gist options
  • Save helart/b95cf729818b9f9c4bc8 to your computer and use it in GitHub Desktop.
Save helart/b95cf729818b9f9c4bc8 to your computer and use it in GitHub Desktop.
<?php
// Письмо менеджерам
$mail = new Mail($this->config->get('config_mail'));
$mail->setTo($this->config->get('config_shop_email'));
$mail->setFrom($this->request->post['email']);
$mail->setSender($this->config->get('config_name'));
$mail->setSubject(sprintf($this->language->get('text_subject_manager'),$this->config->get('config_owner'), $Order_id));
$mail->setHtml($manager);
$mail->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment