在kohana发送电子邮件

时间:2012-06-18 07:49:39

标签: php email kohana kohana-3

朋友们如何通过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',
    ),
)

);

提前致谢

1 个答案:

答案 0 :(得分:6)

使用此模块发送电子邮件: https://github.com/shadowhand/email 它需要vendor-dir中的这个供应商: https://github.com/swiftmailer/swiftmailer

相关问题