getCharset() public method

Get character set
public getCharset ( ) : string
return string
Beispiel #1
0
 public function testSetAndGetCharset()
 {
     $m = new Mail();
     $m->setCharset('utf-8');
     $this->assertEquals('utf-8', $m->getCharset());
 }