+ def gpx_failure(trace, error)
+ with_recipient_locale trace.user do
+ @trace_name = trace.name
+ @trace_description = trace.description
+ @trace_tags = trace.tags
+ @error = error
+
+ mail :to => trace.user.email,
+ :subject => I18n.t('notifier.gpx_notification.failure.subject')
+ end
+ end
+
+ def message_notification(message)
+ 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