setCharset() public method

Set the charset used when rendering the Header.
public setCharset ( string $charset )
$charset string
 /** Apply the charset to the Header */
 private function _setHeaderCharset(Swift_Mime_Header $header)
 {
     if (isset($this->_charset)) {
         $header->setCharset($this->_charset);
     }
 }