我无法找到系统向用户发送订单确认电子邮件的特定代码行。
我应该在哪个文件中寻找该功能?
答案 0 :(得分:2)
它在第764行的classes/PaymentModule.php
中发送电子邮件:
https://github.com/PrestaShop/PrestaShop/blob/1.6.0.11/classes/PaymentModule.php#L764-L775
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
);