+ common_headers friend.befriendee
+ subject I18n.t('notifier.friend_notification.subject', :user => friend.befriender.display_name, :locale => locale)
+ body :friend => friend
+ end
+
+ def note_comment_notification(comment, recipient)
+ common_headers recipient
+ owner = (recipient == comment.note.author);
+ subject I18n.t('notifier.note_plain.subject_own', :commenter => comment.author_name) if owner
+ subject I18n.t('notifier.note_plain.subject_other', :commenter => comment.author_name) unless owner