文章列表
本人想正在学习zend_framework,运用教程中的例子并不能成功发送邮件
我的代码如下:
//Create SMTP connection Object
$configInfo = array('auth' => 'login',
'ssl' => 'SSL',
'username' => 'hello@gmail.com',
'password' => 'hello',
'port' => '465');
$smtpHost = new Zend_Mail_Transport_S ...