Flowdock
method

method_missing

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Mailer
method_missing(method_name, *args) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailer/lib/action_mailer/parameterized.rb, line 111
        def method_missing(method_name, *args)
          if @mailer.action_methods.include?(method_name.to_s)
            ActionMailer::Parameterized::MessageDelivery.new(@mailer, method_name, @params, *args)
          else
            super
          end
        end
Register or log in to add new notes.