instance method
collect_responses_from_text
Ruby on Rails 6.1.7.10
Since v5.2.8.1 PrivateSignature
collect_responses_from_text(headers)
No documentation comment.
Parameters
-
headersreq
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
Defined in actionmailer/lib/action_mailer/base.rb line 944
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionMailer::Base