diaspora/app/mailers/notification_mailers/mentioned.rb
2011-10-09 23:34:03 -05:00

11 lines
No EOL
283 B
Ruby

module NotificationMailers
class Mentioned < NotificationMailers::Base
attr_accessor :post
def set_headers(target_id)
@post = Mention.find_by_id(target_id).post
@headers[:subject] = I18n.t('notifier.mentioned.subject', :name => @sender.name)
end
end
end