method

each_template

each_template(paths, name, &block)
protected

No documentation available.

# File actionmailer/lib/action_mailer/base.rb, line 722
    def each_template(paths, name, &block) #:nodoc:
      templates = lookup_context.find_all(name, Array.wrap(paths))
      templates.uniq_by { |t| t.formats }.each(&block)
    end