# File lib/mail/message.rb, line 1333
    def charset=(value)
      if content_type
        content_type_parameters['charset'] = value
      else
        self.content_type ['text', 'plain', {'charset' => value}]
      end
    end