Magento 1.9.1.0 Order Confirmation Emails - Not Sending

前端 未结 10 1140
渐次进展
渐次进展 2020-12-08 22:54

I\'ve recently upgraded to Magento CE 1.9.1.0 and our order confirmation emails are not being sent to customers or the employees here that are setup to receive notifications

10条回答
  •  情话喂你
    2020-12-08 23:28

    Just do a small change in order.php (public_html/app/code/core/Mage/Sales/Model/Order.php)

    From

    $mailer->setQueue($emailQueue)->send();
    

    To

    $mailer->send();
    

提交回复
热议问题