+ def gpx_success(trace, possible_points)
+ common_headers trace.user
+ subject I18n.t('notifier.gpx_notification.success.subject')
+ body :trace_name => trace.name,
+ :trace_points => trace.size,
+ :trace_description => trace.description,
+ :trace_tags => trace.tags,
+ :possible_points => possible_points
+ end
+
+ def gpx_failure(trace, error)
+ common_headers trace.user
+ from "webmaster@openstreetmap.org"
+ subject I18n.t('notifier.gpx_notification.failure.subject')
+ body :trace_name => trace.name,
+ :trace_description => trace.description,
+ :trace_tags => trace.tags,
+ :error => error
+ end
+
+ def message_notification(message)
+ common_headers message.recipient
+ subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name, :locale => locale)
+ body :to_user => message.recipient.display_name,
+ :from_user => message.sender.display_name,
+ :body => 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)