Magento 1.9.1.0 Order Confirmation Emails - Not Sending

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

    Solution is simple that i found.

    go to System -> Configuration -> ASCHRODER EXTENSIONS -> SMTP -> Queue Configuration -> Queue Usage -> Never
    

    Done!

    Order Confirmation will be sent quickly. :)

    0 讨论(0)
  • 2020-12-08 23:23

    There are many answers but none worked for me. How i solved is that, check that if your default template setup are there in the magento or not. Sometimes during installation its lost and actually "there is no email template by default in system to send your email". Please go to Admin side, System->Transactional Email-> by default you will find no template here. So add one by clicking on button 'Add new Email template. In Load default template panel select a template from the Template drop down suppose forgot Password and click and click Load Template. As earlier said no email template is associated with it so it will not be show in below. The bset thing is to go to install a fresh copy of magento in your local system navigate here and put that same content here and click Save Template button. Then go to System->Configuration->Customer Configuration ->Password Options->Change the 'Forgot Email Template' dropdown to yours as added above .Happy . thus same thing you can also do for order ,shipment, new account etc.

    0 讨论(0)
  • 2020-12-08 23:25

    Goto /app/code/core/Mage/Core/Model/Email/Template.php

    Below changes :

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

    To

    if (false){
    
    0 讨论(0)
  • 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();
    
    0 讨论(0)
提交回复
热议问题