method

method_missing

method_missing(method_name, *args)
protected

No documentation available.

# File actionmailer/lib/action_mailer/base.rb, line 478
      def method_missing(method_name, *args)
        if respond_to?(method_name)
          new(method_name, *args).message
        else
          super
        end
      end