critellus Posted February 23, 2016 Share Posted February 23, 2016 (edited) Hi, Is it possible to send a copy of invoice to merchant in prestashop 1.6? By default prestashop sent an email only to customer. The module 'Email Alerts' don't do this. Thank you Federico Edited February 24, 2016 by critellus (see edit history) Link to comment Share on other sites More sharing options...
critellus Posted February 24, 2016 Author Share Posted February 24, 2016 Hi, I solve the problem. I do this modify: 1. I create new template file in /mails/en/merchantXX.html and merchantXX.txt 2. I modify the file classes/orders/OrderHistory.php at line 442: Mail::Send((int)$order->id_lang, $result['template'], $topic, $data, $result['email'], $result['firstname'].' '.$result['lastname'],null, null, $file_attachement, null, _PS_MAIL_DIR_, false, (int)$order->id_shop); I add this code: //****************************************************** if ( $file_attachement != null ) { $dataXXYY = array( '{lastname}' => 'Name', '{firstname}' => 'Surname', '{id_order}' => (int)$this->id_order, '{order_name}' => $order->getUniqReference() ); //var_dump (_PS_MAIL_DIR_); //die; Mail::Send((int)$order->id_lang, 'merchantXX', $topic, $dataXXYY, '[email protected]' , 'Name'.' '.'Surname',null, null, $file_attachement, null, _PS_MAIL_DIR_, false, (int)$order->id_shop); } //****************************************************************************** Regards Link to comment Share on other sites More sharing options...
ChewieTheWookie Posted February 10, 2018 Share Posted February 10, 2018 Thank you very much, friend, I was just looking for this ! I'll see if it works Link to comment Share on other sites More sharing options...
vanengers Posted September 15, 2020 Share Posted September 15, 2020 YOu can do this with this module for Prestashop 1.6 And ALL 1.7 versions Invoice pdf e-mail copy Module @ Prestashop Addons Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now