Pop\Mail\Message::setEol PHP 메소드

setEol() 공개 메소드

Set EOL
public setEol ( string $eol = Mail::CRLF ) : Mail
$eol string
리턴 Mail
    public function setEol($eol = Mail::CRLF)
    {
        $this->eol = $eol;
        return $this;
    }

Usage Example

예제 #1
0
파일: Mail.php 프로젝트: nicksagona/PopPHP
 /**
  * Set EOL
  *
  * @param  string $eol
  * @return \Pop\Mail\Mail
  */
 public function setEol($eol = Mail::CRLF)
 {
     $this->message->setEol($eol);
     return $this;
 }