rails中的通知

时间:2009-09-11 10:34:35

标签: ruby-on-rails

每次注册用户更新其个人资料时,我都希望管理员收到有关此内容的电子邮件通知。

在Drupal通知模块中将执行此操作

如何在铁轨中完成?

1 个答案:

答案 0 :(得分:4)

查看ActiveRecord::Observer

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