method
collect_responses_from_text
rails latest stable - Class:
ActionMailer::Base
collect_responses_from_text(headers)private
No documentation available.
# File actionmailer/lib/action_mailer/base.rb, line 990
def collect_responses_from_text(headers)
[{
body: headers.delete(:body),
content_type: headers[:content_type] || "text/plain"
}]
end