- @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}"
+ with_recipient_locale message.recipient do
+ @to_user = message.recipient.display_name
+ @from_user = message.sender.display_name
+ @text = message.body
+ @title = message.title
+ @readurl = url_for(:host => SERVER_URL,
+ :controller => "message", :action => "read",
+ :message_id => message.id)
+ @replyurl = url_for(:host => SERVER_URL,
+ :controller => "message", :action => "reply",
+ :message_id => message.id)
+
+ mail :from => from_address(message.sender.display_name, "m", message.id, message.digest),
+ :to => message.recipient.email,
+ :subject => I18n.t('notifier.message_notification.subject_header', :subject => message.title)
+ end
+ end
+
+ def diary_comment_notification(comment)
+ with_recipient_locale comment.diary_entry.user do
+ @to_user = comment.diary_entry.user.display_name
+ @from_user = comment.user.display_name
+ @text = comment.body
+ @title = 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",
+ :display_name => comment.user.display_name,
+ :title => "Re: #{comment.diary_entry.title}")
+
+ mail :from => from_address(comment.user.display_name, "c", comment.id, comment.digest),
+ :to => comment.diary_entry.user.email,
+ :subject => I18n.t('notifier.diary_comment_notification.subject', :user => comment.user.display_name)
+ end