Guest User

Untitled

a guest
Feb 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. # app/jobs/mailer_job.rb
  2. class MailerJob
  3. include Faktory::Job
  4.  
  5. def perform(mailer, action, *args)
  6. mailer.constantize.send(action.to_sym, *args).deliver_now!
  7. end
  8. end
Add Comment
Please, Sign In to add comment