Module: ActionMailer::Parameterized::ClassMethods
- Defined in:
 - lib/action_mailer/parameterized.rb
 
Instance Method Summary collapse
- 
  
    
      #with(params)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide the parameters to the mailer in order to use them in the instance methods and callbacks.
 
Instance Method Details
#with(params) ⇒ Object
Provide the parameters to the mailer in order to use them in the instance methods and callbacks.
InvitationsMailer.with(inviter: person_a, invitee: person_b).account_invitation.deliver_later
See Parameterized documentation for full example.
      100 101 102  | 
    
      # File 'lib/action_mailer/parameterized.rb', line 100 def with(params) ActionMailer::Parameterized::Mailer.new(self, params) end  |