Exemplo n.º 1
0
 /**
  * create a new Mime Part.
  * The (unencoded) content of the Part as passed
  * as a string or stream
  *
  * @param mixed $content  String or Stream containing the content
  */
 public function __construct($content, $alreadyEncoded = false)
 {
     parent::__construct($content);
     $this->_alreadyEncoded = $alreadyEncoded;
 }