如何在Magento中更改属性时通知某些用户?

时间:2011-03-21 20:20:20

标签: magento notifications observer-pattern

我需要在编辑和保存产品时通知用户组,并且更改了一个给定属性。

假设我的属性is_new设置为false,如果管理员更新产品,我需要挂钩该属性已更改,并通过电子邮件通知群组“订阅者”。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您可以使用事件执行此操作,有关如何在magento wiki中创建事件的一些基本信息:

http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/customizing_magento_using_event-observer_method

您需要的事件可能是catalog_product_save_before或catalog_product_save_after,具体取决于您设置代码的方式。