method

method_missing

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: Mailer
method_missing(method_name, ...) 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 117
        def method_missing(method_name, ...)
          if @mailer.action_methods.include?(method_name.name)
            ActionMailer::Parameterized::MessageDelivery.new(@mailer, method_name, @params, ...)
          else
            super
          end
        end
Register or log in to add new notes.