订单确认电子邮件功能在哪里?

时间:2015-01-14 19:44:19

标签: prestashop prestashop-1.6

我无法找到系统向用户发送订单确认电子邮件的特定代码行。

我应该在哪个文件中寻找该功能?

1 个答案:

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