Magento 1.9.1.0 Order Confirmation Emails - Not Sending

前端 未结 10 1108
渐次进展
渐次进展 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:14

    Quick solution is:

    Go to the following location: /app/code/core/Mage/Core/Model/Email/Template.php

    Change Line 407

    if ($this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue) {
    

    To:

    if (!($this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue)) {
    

    It will work.

    Thanks Pankaj

提交回复
热议问题