I would like to be able to run some functionality with a module that I am building whenever a customer registers an account, but I can\'t seem to f
I discovered how to achieve this today. It involves using one of the generic controller events. This node in the config.xml will hook into the right event:
....
...etc
The controller_action_postdispatch_REQUESTPATH event is thrown for every controller that extends Mage_Core_Controller_Front_Action (which is basically all of them) which makes it very easy to target. Ditto for controller_action_predispatch_REQUESTPATH.