How to set up magento admin to send email to client when order is canceled
1 answer
You should use an event to see if the order has been canceled. I don't know if there is such parity ( sales_order_cancelled
or something like that), otherwise you could try to observe sales_order_save_after
and check if the order was canceled and then send an email.
========== EDIT ===========
From what I read at http://www.nicksays.co.uk/magento_events_cheat_sheet/ you should use an event order_cancel_after
. Check app/code/core/Mage/Sales/Model/Order.php
to see how it is called.
+2
source to share