method

collect_responses_from_text

collect_responses_from_text(headers)
private

No documentation available.

# File actionmailer/lib/action_mailer/base.rb, line 929
      def collect_responses_from_text(headers)
        [{
          body: headers.delete(:body),
          content_type: headers[:content_type] || "text/plain"
        }]
      end