嗨朋友如何通过kohana 3.0发送电子邮件
我试过但不工作
我的代码是这样的
$subject = ' : Message to Leet Street';
$from = array('Clarence', 'ratnaraju.java@gmail.com');
email::send('ratnaraju.bonam@gmail.com', $from , $subject, 'hi how r u brother ');
url::redirect();
配置文件是:
return array
(
'default' => array(
'transport' => 'smtp',
'options' => array
(
'hostname' => 'smtp.gmail.com',
'username' => 'ratnaraju.bonam@gmail.com',
'password' => 'Ratna',
'port' => '465',
),
)
);
提前致谢
解决方法:
使用此模块发送电子邮件:
https://github.com/shadowhand/email
它需要vendor-dir中的这个供应商:
https://github.com/swiftmailer/swiftmailer