On twitter

看來有工作可以交派給偉彬了 lol

follow me on twitter

設定 Kohana 透過 Gmail 發信 0

有了之前設定 CodeIgniter 透過 Gmail 發信的經驗, 這次設定 Kohana 就快很多了 :p

不過 CodeIgniter 是 email library, 而 Kohana 則是 email helper (實際上是使用 swift mailer)。

設定檔 /application/config/email.php

$config['driver'] = 'smtp';
$config['options'] = array(
    'hostname' => 'smtp.gmail.com',
    'username' => 'your_username',
    'password' => 'your_password',
    'port' => 465,
    'encryption' => 'tls'
);

然後接著就可以用以下的 code 來發信啦!

$to = 'foo@bar.com';
$from = 'bar@foo.com';
$subject = 'email subject';
$message = 'Hello, World!';
email::send($to, $from, $subject, $message);
August 20th, 2008 Programming Tags: , ,

Leave a Reply

Partners of Oceanic / 人生海海

jiwo sca wellmeet