setBoundary() public méthode

Set MIME boundary
public setBoundary ( string $bnd = null ) : Message
$bnd string
Résultat Message
Exemple #1
0
 /**
  * Set MIME boundary
  *
  * @param  string $bnd
  * @return \Pop\Mail\Mail
  */
 public function setBoundary($bnd = null)
 {
     $this->message->setBoundary($bnd);
     return $this;
 }