mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
408 B
Ruby
13 lines
408 B
Ruby
require 'active_job'
|
|
|
|
module ActionMailer
|
|
# The <tt>ActionMailer::DeliveryJob</tt> class is used when you
|
|
# want to send emails outside of the request-response cycle.
|
|
class DeliveryJob < ActiveJob::Base #:nodoc:
|
|
queue_as :mailers
|
|
|
|
def perform(mailer, mail_method, delivery_method, *args) #:nodoc#
|
|
mailer.constantize.public_send(mail_method, *args).send(delivery_method)
|
|
end
|
|
end
|
|
end
|