Email Cron – Fix Magento Cron Not Sending Emails

amazonsescronemailsend mailsmtp

I have a magento installation (1.9.2.3) on a Bitnami AWS instance, I am trying to use the SMTP Pro extension ( source ) and use the Amazon SES feature. When I run the self-test it works and send the email from and to the configured emails.

But the magento installation cant send emails at all.

  • I tried to run either cron.php or cron.sh , without any error, but without any apparent consequence.
  • sendmail is installed and working
  • Amazon SES credentials working

cronjob is irrelevant at this point since It doesnt do anything.

Can someone help me?

Best Answer

Try this, I think it'll work.

in the file

app/code/core/Mage/Sales/Model/Order.php

Change

$mailer->setQueue($emailQueue)->send();

to

$mailer->send();
Related Topic