Jump to content

Choose emails sent by prestashop


Jibax

Recommended Posts

Hi there, 

I would like to disable Prestashop to send emails when a customer purchase a product, mainly the one containing the bill because my provider sends another email and it creates duplicate content. 

Do you know how (and where) I can modify this behavior ? And more generally, choose the email sent to the customer ? 

Any advice appreciated, thanks !

 

Link to comment
Share on other sites

You can open file: classes\PaymentModule.php

method: validateOrder

Comment or remove this block Send email

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
                            );

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...