Magento 1.9 – Customer Registration Notification Email to Admin

magento-1.9order-emailregister

Is there an easy solution for the admin to receive a notification email every time someone registers to the store?

Best Answer

You can create an observer on the customer_register_success event.

Then access the customer object in your model:

public function notify_function($observer) 

{

$customer = $observer->getEvent()->getCustomer();

//Do whatever you want here
}

Please check below link for more information: http://inchoo.net/ecommerce/magento/magento-custom-emails/

You can also use:

The customer activation module from Vinai not only has this functionality but also allows you to specify the template used when emailing the admin user on customer registration.

Related Topic