]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/notifier.rb
Tell users if the reason they can't login is because they haven't activated
[rails.git] / app / models / notifier.rb
index 484cb702f42e3f686a50dd6e337f79969b461c27..b064ee1f0350ff348251668de20a3e80c26fbdf8 100644 (file)
@@ -1,12 +1,40 @@
 class Notifier < ActionMailer::Base
 
   def signup_confirm( user )
-    # Email header info MUST be added here
     @recipients = user.email
     @from = 'abuse@openstreetmap.org'
     @subject = '[OpenStreetMap] Confirm your email address'
+    @body['url'] = "http://#{SERVER_URL}/user/confirm?confirm_string=#{user.token}"
+  end
 
-    @body['url'] = 'http://www.openstreetmap.org/user/confirm?confirm_string=' + user.token
+  def lost_password( user )
+    @recipients = user.email
+    @from = 'abuse@openstreetmap.org'
+    @subject = '[OpenStreetMap] Password reset request'
+    @body['url'] = "http://#{SERVER_URL}/user/reset_password?email=#{user.email}&token=#{user.token}"
+  end
+
+  def reset_password(user, pass)
+    @recipients = user.email
+    @from = 'abuse@openstreetmap.org'
+    @subject = '[OpenStreetMap] Password reset'
+    @body['pass'] = pass
+  end
+
+  def gpx_success(trace, possible_points)
+    @recipients = trace.user.email
+    @from = 'abuse@openstreetmap.org'
+    @subject = '[OpenStreetMap] GPX Import success'
+    @body['trace_name'] = trace.name
+    @body['trace_points'] = trace.size
+    @body['possible_points'] = possible_points
+  end
+
+  def gpx_failure(trace, error)
+    @recipients = trace.user.email
+    @from = 'abuse@openstreetmap.org'
+    @subject = '[OpenStreetMap] GPX Import failure'
+    @body['trace_name'] = trace.name
+    @body['error'] = error
   end
-  
 end