instance method
parse_body
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18 PrivateAvailable in: v2.2.3 v2.3.18
Signature
parse_body( f = nil )
No documentation comment.
Parameters
-
fopt = nil
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/mail.rb, line 519
def parse_body( f = nil )
return if @body_parsed
if f
parse_body_0 f
else
@port.ropen {|f|
skip_header f
parse_body_0 f
}
end
@body_parsed = true
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/mail.rb line 519
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail