我正在使用prestashop 1.6。 在文件夾類我修改的文件Paymentmodule.php註釋本線出如何將購買電子郵件發送給特定組的客戶? prestashop
// 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
// );
// }
這樣的Prestashop不,他們盡一切購買後發送到註冊的costumers的訂單確認電子郵件。 有沒有辦法將這個稱爲order_conf的郵件發送給一組客戶端?也許在paymentmodule.php中編寫一些代碼,或者使用模塊編寫代碼?
我正在尋找的是在購買產品後向特定組的客戶發送確認郵件的最簡單方法。不需要是order_conf。 任何想法? 感謝您的時間 再見
您想要將郵件發送到特定組的客戶端。對於那些位於該組中的所有客戶,該組是否需要默認? – Nimish