public function __construct(Io_Charset $charset_)
 {
     parent::__construct(null, md5(uniqid()), Io_Mimetype::MULTIPART_MIXED($charset_));
     $this->date = new \DateTime();
     $this->version = self::MIME_VERSION;
     $this->messageId = md5(uniqid());
 }
 /**
  * @return \Components\Mail_Part
  */
 public static function mixed()
 {
     return new self(null, md5(uniqid()), Io_Mimetype::MULTIPART_MIXED());
 }