X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cfbdd3f7e1c688e2c875ded9fd847fcc1c3a4caf..877724813ce3b9bc8b3a33a1544bdc4e27d2f2af:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 9eff2fb92..e471730c1 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -49,4 +49,14 @@ class Notifier < ActionMailer::Base @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