+ def signup_confirm(user, token)
+ common_headers user
+ subject I18n.t('notifier.signup_confirm.subject')
+ body :url => url_for(:host => SERVER_URL,
+ :controller => "user", :action => "confirm",
+ :confirm_string => token.token)
+ end
+
+ def email_confirm(user, token)
+ common_headers user
+ recipients user.new_email
+ subject I18n.t('notifier.email_confirm.subject')
+ body :address => user.new_email,
+ :url => url_for(:host => SERVER_URL,
+ :controller => "user", :action => "confirm_email",
+ :confirm_string => token.token)
+ end
+
+ def lost_password(user, token)
+ common_headers user
+ subject I18n.t('notifier.lost_password.subject')
+ body :url => url_for(:host => SERVER_URL,
+ :controller => "user", :action => "reset_password",
+ :token => token.token)
+ end
+
+ 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