diff lib/tasks/email.rake @ 41:7f0e922c8982 luisf

merged with new version from trunk
author luisf
date Fri, 19 Nov 2010 14:45:28 +0000
parents 94944d00e43c
children cbce1fd3b1b7
line wrap: on
line diff
--- a/lib/tasks/email.rake	Thu Nov 18 17:50:11 2010 +0000
+++ b/lib/tasks/email.rake	Fri Nov 19 14:45:28 2010 +0000
@@ -165,5 +165,22 @@
       
       Redmine::POP3.check(pop_options, options)
     end
+    
+    desc "Send a test email to the user with the provided login name"
+    task :test, :login, :needs => :environment do |task, args|
+      include Redmine::I18n
+      abort l(:notice_email_error, "Please include the user login to test with. Example: login=examle-login") if args[:login].blank?
+
+      user = User.find_by_login(args[:login])
+      abort l(:notice_email_error, "User #{args[:login]} not found") unless user.logged?
+      
+      ActionMailer::Base.raise_delivery_errors = true
+      begin
+        Mailer.deliver_test(User.current)
+        puts l(:notice_email_sent, user.mail)
+      rescue Exception => e
+        abort l(:notice_email_error, e.message)
+      end
+    end
   end
 end