aboutsummaryrefslogtreecommitdiffstats
path: root/app/jobs/mailer_job.rb
blob: eb3250a2729ee51aeefe19779cef667de5665a76 (plain)
1
2
3
4
5
6
7
8
9
10
class MailerJob < ActiveJob::Base
  # No need to specify queue it's already used mailers queue

  # This job will be retried, unlike Sidekiq jobs which are configured
  # to not retry

  def perform klass, action, params
    klass.constantize.public_send(action, *params).deliver_later
  end
end