setEol() public method

Set EOL
public setEol ( string $eol = Mail::CRLF ) : Mail
$eol string
return Mail
Example #1
0
 public function testSetAndGetEol()
 {
     $m = new Mail();
     $m->setEol(Mail::LF);
     $this->assertEquals("\n", $m->getEol());
 }