Class: MandrillMailer::MandrillMessageJob

Inherits:
ActiveJob::Base
  • Object
show all
Defined in:
lib/mandrill_mailer/mandrill_message_later.rb

Instance Method Summary collapse

Instance Method Details

#perform(message, async, ip_pool, send_at) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/mandrill_mailer/mandrill_message_later.rb', line 6

def perform(message, async, ip_pool, send_at)
  mailer = MandrillMailer::MessageMailer.new
  mailer.message = message
  mailer.async = async
  mailer.ip_pool = ip_pool 
  mailer.send_at = send_at
  mailer.deliver_now
end