Vitalij Kazakevic Posted June 1, 2018 Share Posted June 1, 2018 Help please to solve problem. After placing an order system automaticaly send order confirmation email to customer. Maybe somebody know how to disable it? =============================================================== Prestashop 1.6.1 Link to comment Share on other sites More sharing options...
eleazar Posted June 2, 2018 Share Posted June 2, 2018 Search for this code in /classes/PaymentModule.php (line 777 - 790) if (Validate::isEmail($this->context->customer->email)) { Mail::Send( (int)$order->id_lang, 'order_conf', Mail::l('Order confirmation', (int)$order->id_lang), $data, $this->context->customer->email, $this->context->customer->firstname.' '.$this->context->customer->lastname, null, null, $file_attachement, null, _PS_MAIL_DIR_, false, (int)$order->id_shop ); } and deactivate it. 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