diff lib/tasks/email.rake @ 51:371eac10df0b live

* Merge from "cannam" branch. This includes update to Redmine trunk, plus welcome/tip-of-the-day from luisf branch.
author Chris Cannam
date Wed, 24 Nov 2010 12:20:08 +0000
parents 94944d00e43c
children cbce1fd3b1b7
line wrap: on
line diff
--- a/lib/tasks/email.rake	Thu Oct 21 11:19:14 2010 +0100
+++ b/lib/tasks/email.rake	Wed Nov 24 12:20:08 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