当管理员在Magento管理面板中创建新用户时向用户发送电子邮件


Send email to user when admin create new user in magento admin panel

当管理员在magento管理面板中创建电子邮件时,有没有办法向用户发送电子邮件?我一直在查看 Magento 的可用事件 ,但我认为他们在创建用户时是否有任何事件。

Mage::dispatchEvent('adminhtml_customer_prepare_save', array(
    'customer'  => $customer,
    'request'   => $this->getRequest()
));    

Mage::dispatchEvent('adminhtml_customer_save_after', array(
    'customer'  => $customer,
    'request'   => $this->getRequest()
));

如上所述,当管理员从管理面板创建用户时,有两个事件触发器,您可以创建一个观察者并挂钩到这些事件,并能够相应地发送您的自定义电子邮件。