setCharset() public method

Set character set
public setCharset ( string $chr ) : Message
$chr string
return Message
Beispiel #1
0
 /**
  * Set character set
  *
  * @param  string $chr
  * @return \Pop\Mail\Mail
  */
 public function setCharset($chr)
 {
     $this->message->setCharset($chr);
     return $this;
 }