Magento Email – Fix Email Notification Not Delivered to Customers

emailmagento-1.9

I am new to Magento. As an admin i am getting email notifications on orders. But customer doesn't get any email notification on orders, password reset, etc. Is there any settings to be enabled it for customers?

Best Answer

Finally i traced the problem. Its just because of the version 1.9.1. It queues the mails to cron. I just commented the queue syntax in email template. Now It started working. You can refer Magento 1.9.1 Email Queue not working/buggy - how to troubleshoot and what is considered the best patch?.

But this is just a workaround. The right way is of course to enable the Magento cronjob

in shell (SSH):

$ crontab -e

Add this line to execute the Magento cron queue every 5 minutes:

*/5 * * * *  php /absolute/path/to/magento/cron.php -mdefault
*/5 * * * *  php /absolute/path/to/magento/cron.php -malways

You might need to replace php with the absolute path to your php-cli binary. Ask your hoster if it doesn't work and you don't know the path.

Related Topic