X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0a8c26e596b40da6d428a5c91db0d815d13c89e4..877724813ce3b9bc8b3a33a1544bdc4e27d2f2af:/app/models/notifier.rb?ds=inline diff --git a/app/models/notifier.rb b/app/models/notifier.rb index aaad67d0e..e471730c1 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -37,4 +37,26 @@ class Notifier < ActionMailer::Base @body['trace_name'] = trace.name @body['error'] = error end + + def message_notification(message) + @recipients = message.recipient.email + @from = 'abuse@openstreetmap.org' + @subject = "[OpenStreetMap] #{message.sender.display_name} sent you a new message" + @body['to_user'] = message.recipient.display_name + @body['from_user'] = message.sender.display_name + @body['body'] = message.body + @body['subject'] = message.title + @body['readurl'] = "http://#{SERVER_URL}/message/read/#{message.id}" + @body['replyurl'] = "http://#{SERVER_URL}/message/new/#{message.from_user_id}" + end + + def friend_notification(friend) + @friend = User.find_by_id(friend.user_id) + @new_friend = User.find_by_id(friend.friend_user_id) + @recipients = @new_friend.email + @from = 'abuse@openstreetmap.org' + @subject = "[OpenStreetMap] #{@friend.display_name} added you as a friend" + @body['user'] = @friend.display_name + @body['userurl'] = "http://#{SERVER_URL}/user/#{@friend.display_name}" + end end