X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b4165975078d6a520f80296fafea19b4c6b83bf5..801f02fdd95b056311d899e092b61be492b5cfd6:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index f934a8bde..84d097341 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -1,3 +1,4 @@ + class Notifier < ActionMailer::Base def signup_confirm(user, token) recipients user.email @@ -34,6 +35,8 @@ class Notifier < ActionMailer::Base headers "Auto-Submitted" => "auto-generated" body :trace_name => trace.name, :trace_points => trace.size, + :trace_description => trace.description, + :trace_tags => trace.tags, :possible_points => possible_points end @@ -43,6 +46,8 @@ class Notifier < ActionMailer::Base subject "[OpenStreetMap] GPX Import failure" headers "Auto-Submitted" => "auto-generated" body :trace_name => trace.name, + :trace_description => trace.description, + :trace_tags => trace.tags, :error => error end @@ -63,6 +68,34 @@ class Notifier < ActionMailer::Base :message_id => message.id) end + def diary_comment_notification(comment) + recipients comment.diary_entry.user.email + from "webmaster@openstreetmap.org" + subject "[OpenStreetMap] #{comment.user.display_name} commented on your diary entry" + headers "Auto-Submitted" => "auto-generated" + body :to_user => comment.diary_entry.user.display_name, + :from_user => comment.user.display_name, + :body => comment.body, + :subject => comment.diary_entry.title, + :readurl => url_for(:host => SERVER_URL, + :controller => "diary_entry", + :action => "view", + :display_name => comment.diary_entry.user.display_name, + :id => comment.diary_entry.id, + :anchor => "comment#{comment.id}"), + :commenturl => url_for(:host => SERVER_URL, + :controller => "diary_entry", + :action => "view", + :display_name => comment.diary_entry.user.display_name, + :id => comment.diary_entry.id, + :anchor => "newcomment"), + :replyurl => url_for(:host => SERVER_URL, + :controller => "message", + :action => "new", + :user_id => comment.user.id, + :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)