subject I18n.t('notifier.signup_confirm.subject')
body :url => url_for(:host => SERVER_URL,
:controller => "user", :action => "confirm",
+ :display_name => user.display_name,
:confirm_string => token.token)
end
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
+
+ body :nodeurl => url_for(:host => SERVER_URL,
+ :controller => "browse",
+ :action => "note",
+ :id => comment.note_id),
+ :place => comment.note.nearby_place,
+ :comment => comment.body,
+ :owner => owner,
+ :commenter => comment.author_name
+ end
+
private
def common_headers(recipient)