xderia Posted November 5, 2014 Share Posted November 5, 2014 (edited) The customers has to agree on the Terms and conditions before making the order. But the seller has no proof that the Terms and conditions where sent to the customer together with the order. I always put the Terms and conditions in the "Order Shipped" conformation mail, but I want the system to send a e-mail copy the shop. How can this be done? This should be an option in PS. I could be very important later if the customer report a problem. Edited November 5, 2014 by xderia (see edit history) Link to comment Share on other sites More sharing options...
xderia Posted November 7, 2014 Author Share Posted November 7, 2014 (edited) Solution: /www/classes/Mail.php add in line 168 (PS 1.6.0.9): if($template == 'shipped') {$to_list->addTo('[email protected]', 'admin');} Add before: if(isset($bcc)) { $to_list->addBcc($bcc); } Edited November 7, 2014 by xderia (see edit history) Link to comment Share on other sites More sharing options...
Bonjovi67 Posted May 20, 2016 Share Posted May 20, 2016 (edited) Solution: /www/classes/Mail.php add in line 168 (PS 1.6.0.9): if($template == 'shipped') {$to_list->addTo('[email protected]', 'admin');} Add before: if(isset($bcc)) { $to_list->addBcc($bcc); } Hi Anyone knows how to make the email to the shop as BCC ? (SOLVED) I changed it to: if($template == 'shipped') {$to_list->addBcc('[email protected]', 'admin');} And it seems to work Edited May 20, 2016 by Bonjovi67 (see edit history) Link to comment Share on other sites More sharing options...
ANGELO Vintage Posted June 22, 2017 Share Posted June 22, 2017 (edited) i've the same problem but use the 1.6.1.13. the mail.php is different and touch it without any knowledge is not something i like. Someone have a solution to override the mail.php do add only when shipped template is sent a bcc email to trustpilot? ty Edited June 22, 2017 by ANGELO Vintage (see edit history) Link to comment Share on other sites More sharing options...
Scully Posted June 30, 2017 Share Posted June 30, 2017 Search the forum, this question was answered yesterday. Look here: https://www.prestashop.com/forums/topic/339663-how-to-add-a-mailaddress-in-bcc-just-for-shipping-mail/ Link to comment Share on other sites More sharing options...
Recommended Posts