Категории

Setup SwiftMailer in Kohana using Gmail

Настройка SwiftMailer для отправки почты через Gmail в Kohana3


Настройки файла system/config/email.php

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

Пример кода

$to      = '[email protected]';
$from    = '[email protected]';
$subject = 'Suject';
$message = 'Message';
 
$swift = email::connect(); 
$message = new Swift_Message($subject, $message); 
$swift->send($message, $to, $from);

Комментариев нет: