I just wanted to insert 2 lines in order update e-mail but I couldn't find the way how to.
Witch file(s) do I have to modify?
Thanks for your help!
update() function in admin\controller\order.php
and the language file controller\order.php
in the definition for email_message each %s in the text is replaced in turn, by the value in the 2nd, 3rd... parameters
Code: Select all
$mail->setTo($order_info['email']);
$mail->setFrom($config->get('config_email'));
$mail->setSender($config->get('config_store'));
$mail->setSubject($language->get('email_subject', $order_id));
$mail->setText($language->get('email_message', $order_id, $invoice, $date, $status, $comment));
$mail->send();
in the definition for email_message each %s in the text is replaced in turn, by the value in the 2nd, 3rd... parameters
Who is online
Users browsing this forum: No registered users and 3 guests