setBoundary() public method

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