setEol() public méthode

Set EOL
public setEol ( string $eol = Mail::CRLF ) : Mail
$eol string
Résultat Mail
Exemple #1
0
 /**
  * Set EOL
  *
  * @param  string $eol
  * @return \Pop\Mail\Mail
  */
 public function setEol($eol = Mail::CRLF)
 {
     $this->message->setEol($eol);
     return $this;
 }