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',
    ),
)

);

提前致谢

4

1 回答 1

6

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

于 2012-08-05T12:58:45.933 回答