每次注册用户更新其个人资料时,我都希望管理员收到有关此内容的电子邮件通知。
在Drupal通知模块中将执行此操作
如何在铁轨中完成?
答案 0 :(得分:4)
class UserObserver < ActiveRecord::Observer
observe :userprofile
def after_save(userprofile)
Notifier.deliver_comment("bofh@buddybetting.com", "The profile for #{userprofile.username} has changed.", userprofile)
end
end