Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Подробная информация в email о заказе


Recommended Posts

Как сгделать чтобы в информационном имейле о заказе админу указывалась вся инфа о заказе, ну или хотя бы имя-телефон-поли клиени?

Link to comment
Share on other sites


1 час назад, Bugagash сказал:

Как сгделать чтобы в информационном имейле о заказе админу указывалась вся инфа о заказе, ну или хотя бы имя-телефон-поли клиени?

 

Правильнее послать админу икое же письмо как пользователю

 

отклюлить событие mail_order_alert

 

а в catalog/controller/mail/order.php

 

найти это 

 

и после $mail->send() 

добавить

 

			$mail->setTo($this->config->get('config_email'));

			$mail->send();

			// Send to additional alert emails
			$emails = explode(',', $this->config->get('config_mail_alert_email'));

			foreach ($emails as $email) {
				if ($email && filter_var($email, FILTER_VALIDATE_EMAIL)) {
					$mail->setTo($email);
					$mail->send();
				}
			}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.