In magento, new order email is not working. I have set up “store email addresses” also, not working.
2
Check if your CRON is running or not. Default Magento adds order emails to queue & then sends it via scheduled CRON.
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
app/code/core/Mage/Sales/Model/Order.php
& replace
$mailer->setQueue($emailQueue)->send(); with $mailer-> send();
Click here to cancel reply.
2
Answers
Check if your CRON is running or not. Default Magento adds order emails to queue & then sends it via scheduled CRON.
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