class RailsBand::ActionMailer::Event::Process

A wrapper for the event that is passed to ‘process.action_mailer`.

Public Instance Methods

action() click to toggle source
# File lib/rails_band/action_mailer/event/process.rb, line 12
def action
  @action ||= @event.payload.fetch(:action)
end
args() click to toggle source
# File lib/rails_band/action_mailer/event/process.rb, line 16
def args
  @args ||= @event.payload.fetch(:args)
end
mailer() click to toggle source
# File lib/rails_band/action_mailer/event/process.rb, line 8
def mailer
  @mailer ||= @event.payload.fetch(:mailer)
end