Magento 1.8 – Send Email Button on Order Not Working

admin-panelemailmagento-1.8

Magento is not sending emails when you click the Send Email button in admin on Sales>order.

Eroor Image

Please Help.

All other mail are send. but this one is not working.

like order,order conform, invoice etc. all mail are sent

Best Answer

In case you haven't figured this out or for future reference, Magento checks to see if the order email has already been sent or not and if it has, it returns out of the function without any error, thus pretending everything worked out.

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

Into: app/code/local/Mage/Sales/Model/Order.php

on line 1275 (Magento 1.9.0.1), comment out return $this;

if ($this->getEmailSent()) {
    //return $this;
}

This works and is tested on Magento 1.9.0.1, but it should also work for previous versions too.

Related Topic