class ActionMailer::Parameterized::Mailer
def method_missing(method_name, ...)
def method_missing(method_name, ...) if @mailer.action_methods.include?(method_name.name) ActionMailer::Parameterized::MessageDelivery.new(@mailer, method_name, @params, ...) else super end end