Flowdock
method

collect_responses_from_text

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActionMailer::Base
collect_responses_from_text(headers) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailer/lib/action_mailer/base.rb, line 944
      def collect_responses_from_text(headers)
        [{
          body: headers.delete(:body),
          content_type: headers[:content_type] || "text/plain"
        }]
      end
Register or log in to add new notes.