Home  >  Article  >  php教程  >  ZF框架实现发送邮件的方法

ZF框架实现发送邮件的方法

WBOY
WBOYOriginal
2016-06-06 19:36:261413browse

这篇文章主要介绍了ZF框架实现发送邮件的方法,实例分析了Zend Framework使用smtp邮件类实现邮件发送的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

Zend_Loader::loadFile("Zend/Mail.php"); Zend_Loader::loadFile("Zend/Mail/Transport/Smtp.php"); $config = array( 'auth' => 'login', 'username' => 'username@163.com', '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("username@163.com", "loopercopper"); $mail->addTo('wiseideal@163.com', "andy"); $mail->setSubject("testSubject"); $mail->send($transport);

解决主题乱码的方式:

复制代码 代码如下:

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn