Add rake task to send test email. (#6511)
Contributed by Holger Just git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4256 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
c20308c7ba
commit
06c0e5ad1c
|
@ -165,5 +165,22 @@ END_DESC
|
|||
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue