skip to Main Content

In magento, new order email is not working. I have set up “store email addresses” also, not working.

2

Answers


  1. Check if your CRON is running or not. Default Magento adds order emails to queue & then sends it via scheduled CRON.

    Login or Signup to reply.
  2. You can try :-

    a- You’ve to set CRON, by default Magento sent the email by CRON.

    b- Or if you don’t want set CRON, then simply open app/code/core/Mage/Sales/Model/Order.php

    & replace

    $mailer->setQueue($emailQueue)->send(); 
    
    with
    
    $mailer-> send();
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search