Novios Posted October 30, 2016 Share Posted October 30, 2016 I recently updated my Prestashop from 1.6.0.8 tot 1.6.1.7. Everything works fine, there is only one thing that does not work anymore and that I would like to have back. That is that I as a shopowner receive copys (bcc?) of all e-mails that are sent by the store to customers. So the order confirmation mail, payment confirmation etc, etc. All the mails. How can I fix this? I read some things but it was not clear to me. Link to comment Share on other sites More sharing options...
rocky Posted October 30, 2016 Share Posted October 30, 2016 You can try changing lines 202- 204 (in PrestaShop v1.6.1.8) of classes/Mail.php from: if (isset($bcc)) { $message->addBcc($bcc); } to: if (isset($bcc)) { $message->addBcc($bcc); } $message->addBcc('[email protected]', 'Your name'); Change the parameters to your email address and name. Link to comment Share on other sites More sharing options...
Novios Posted October 30, 2016 Author Share Posted October 30, 2016 Thanks for your reply, but is does not seem to work. It looks like this here, should I add something before or behind it? } if (isset($bcc)) { $message->addBcc($bcc); }$message->addBcc('[email protected]', 'Noviostores.nl'); try { Link to comment Share on other sites More sharing options...
Novios Posted October 30, 2016 Author Share Posted October 30, 2016 Sorry, it works, Thank you! 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