ZF框架发送邮件方式

 

Zend_Loader::loadFile("Zend/Mail.php");

Zend_Loader::loadFile("Zend/Mail/Transport/Smtp.php");

$config = array(

'auth' => 'login',

'username' => '[email protected]',

'password' => 'password',

);

$transport = new Zend_Mail_Transport_Smtp('smtp.163.com', $config);

$mail = new Zend_Mail();

$mail->setBodyText("this is body text", "utf-8");

$mail->setFrom("[email protected]", "loopercopper");

$mail->addTo('[email protected]', "andy");

$mail->setSubject("testSubject");

$mail->send($transport);

解决主题乱码的方式

$mail->setSubject("=?UTF-8?B?".base64_encode("中文消息")."?=");

你可能感兴趣的:(发送邮件)