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