Zend_Mail::__construct PHP Method

__construct() public method

Public constructor
public __construct ( string $charset = null )
$charset string
    public function __construct($charset = null)
    {
        if ($charset != null) {
            $this->_charset = $charset;
        }
    }

Usage Example

Beispiel #1
0
 public function __construct($mustNotBeSet = null)
 {
     if ($mustNotBeSet) {
         throw new Kwf_Exception("Kwf_Mail got replaced with Kwf_Mail_Template");
     }
     parent::__construct('utf-8');
 }
All Usage Examples Of Zend_Mail::__construct