method

default_template_format

default_template_format()
private

No documentation available.

# File actionmailer/lib/action_mailer/base.rb, line 573
      def default_template_format
        if @current_template_content_type
          Mime::Type.lookup(@current_template_content_type).to_sym
        else
          :html
        end
      end