# File lib/mail/message.rb, line 1637 def convert_to_multipart text = body.decoded self.body = '' text_part = Mail::Part.new({:content_type => 'text/plain;', :body => text}) self.body << text_part end