X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/19e648687071f46fc84154824d4cb6f094003488..0a3087cd7dbf3c4ce98afe9e086aca50d19325cd:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 7fc276042..d3c975df9 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -4,6 +4,7 @@ class Notifier < ActionMailer::Base 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 @@ -48,7 +49,7 @@ class Notifier < ActionMailer::Base def message_notification(message) common_headers message.recipient from_header message.sender.display_name, "m", message.id, message.digest - subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name, :locale => locale) + subject I18n.t('notifier.message_notification.subject_header', :subject => message.title, :locale => locale) body :to_user => message.recipient.display_name, :from_user => message.sender.display_name, :body => message.body, @@ -84,20 +85,32 @@ class Notifier < ActionMailer::Base :replyurl => url_for(:host => SERVER_URL, :controller => "message", :action => "new", - :user_id => comment.user.id, + :display_name => comment.user.display_name, :title => "Re: #{comment.diary_entry.title}") end def friend_notification(friend) - befriender = User.find_by_id(friend.user_id) - befriendee = User.find_by_id(friend.friend_user_id) + common_headers friend.befriendee + subject I18n.t('notifier.friend_notification.subject', :user => friend.befriender.display_name, :locale => locale) + body :friend => friend + end + + def bug_comment_notification(bug_comment, recipient) + common_headers recipient + commenter_name = bug_comment.user.display_name if bug_comment.user + commenter_name = bug_comment.commenter_name unless bug_comment.user + owner = (recipient == bug_comment.map_bug.map_bug_comment[0].user); + subject I18n.t('notifier.map_bug_plain.subject_own', :commenter => commenter_name) if owner + subject I18n.t('notifier.map_bug_plain.subject_other', :commenter => commenter_name) unless owner - common_headers befriendee - subject I18n.t('notifier.friend_notification.subject', :user => befriender.display_name, :locale => locale) - body :user => befriender.display_name, - :userurl => url_for(:host => SERVER_URL, - :controller => "user", :action => "view", - :display_name => befriender.display_name) + body :bugurl => url_for(:host => SERVER_URL, + :controller => "browse", + :action => "bug", + :id => bug_comment.bug_id), + :place => bug_comment.map_bug.nearby_place, + :comment => bug_comment.comment, + :owner => owner, + :commenter => commenter_name end private @@ -105,13 +118,13 @@ private def common_headers(recipient) recipients recipient.email locale recipient.preferred_language_from(I18n.available_locales) - from "OpenStreetMap " - headers "return-path" => "bounces@openstreetmap.org", + from EMAIL_FROM + headers "return-path" => EMAIL_RETURN_PATH, "Auto-Submitted" => "auto-generated" end def from_header(name, type, id, digest) - if domain = APP_CONFIG['messages_domain'] + if domain = MESSAGES_DOMAIN from quote_address_if_necessary("#{name} <#{type}-#{id}-#{digest[0,6]}@#{domain}>", "utf-8") end end