aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/mail_delivery_job.rb
blob: 93778edfce50e181c7083a2b82a558a1fe8dba6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require "active_job"

module ActionMailer
  # The <tt>ActionMailer::NewDeliveryJob</tt> class is used when you
  # want to send emails outside of the request-response cycle. It supports
  # sending either parameterized or normal mail.
  #
  # Exceptions are rescued and handled by the mailer class.
  class MailDeliveryJob < ActiveJob::Base # :nodoc:
    queue_as { ActionMailer::Base.deliver_later_queue_name }

    rescue_from StandardError, with: :handle_exception_with_mailer_class

    def perform(mailer, mail_method, delivery_method, args:, params: nil) #:nodoc:
      mailer_class = params ? mailer.constantize.with(params) : mailer.constantize
      mailer_class.public_send(mail_method, *args).send(delivery_method)
    end

    private
      # "Deserialize" the mailer class name by hand in case another argument
      # (like a Global ID reference) raised DeserializationError.
      def mailer_class
        if mailer = Array(@serialized_arguments).first || Array(arguments).first
          mailer.constantize
        end
      end

      def handle_exception_with_mailer_class(exception)
        if klass = mailer_class
          klass.handle_exception exception
        else
          raise exception
        end
      end
  end
end