Pop\Mail\Message::setCharset PHP Method

setCharset() public method

Set character set
public setCharset ( string $chr ) : Message
$chr string
return Message
    public function setCharset($chr)
    {
        $this->charset = $chr;
        return $this;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Set character set
  *
  * @param  string $chr
  * @return \Pop\Mail\Mail
  */
 public function setCharset($chr)
 {
     $this->message->setCharset($chr);
     return $this;
 }