16 lines
371 B
PHP
16 lines
371 B
PHP
|
<?php
|
||
|
class WestdcMailer extends Zend_Mail {
|
||
|
private tr; //smtp class
|
||
|
function __construct($smtp)){
|
||
|
$this->tr=new Zend_Mail_Transport_Smtp($smtp->host,
|
||
|
array('ssl' => $smtp->ssl,
|
||
|
'auth'=>$smtp->auth,
|
||
|
'username'=>$smtp->username,
|
||
|
'password'=>$smtp->password));
|
||
|
parent::__construct('utf-8');
|
||
|
}
|
||
|
function send()
|
||
|
{
|
||
|
parent::send($this->tr);
|
||
|
}
|
||
|
}
|