method
method_missing
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
method_missing(method_name, *args)
protected
Hide source
# 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