method
method_missing
v4.2.7 -
Show latest stable
- Class:
ActionMailer::Base
method_missing(method_name, *args)protected
No documentation available.
# File actionmailer/lib/action_mailer/base.rb, line 565
def method_missing(method_name, *args) # :nodoc:
if action_methods.include?(method_name.to_s)
MessageDelivery.new(self, method_name, *args)
else
super
end
end