class method
self.method_missing
Ruby on Rails 8.0.4
Since v4.0.13 PrivateSignature
self.method_missing(method_name, ...)
No documentation comment.
Parameters
-
method_namereq -
...req
Source
# File actionmailer/lib/action_mailer/base.rb, line 623
def method_missing(method_name, ...)
if action_methods.include?(method_name.name)
MessageDelivery.new(self, method_name, ...)
else
super
end
end
Defined in actionmailer/lib/action_mailer/base.rb line 623
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionMailer::Base