编程语言
首页 > 编程语言> > php – 在kohana发送电子邮件

php – 在kohana发送电子邮件

作者:互联网

嗨朋友如何通过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

标签:kohana,kohana-3,php,email
来源: https://codeday.me/bug/20190826/1728467.html