coderxin
3/9/2013 - 7:57 PM

delayed_devise_mailer.rb

module Devise
	module Models
		module Confirmable
			handle_asynchronously :send_confirmation_instructions
		end
		
		module Recoverable
			handle_asynchronously :send_reset_password_instructions
		end
		
		module Lockable
			handle_asynchronously :send_unlock_instructions
		end
	end
end