Zend_Mail::__construct PHP 메소드

__construct() 공개 메소드

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

Usage Example

예제 #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