summaryrefslogtreecommitdiffstats
path: root/config/bootstrap/mail.php
blob: 047a90b594b077217022ca0a38189347c44d6069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php 

use li3_swiftmailer\mailer\Transports;

Transports::config(array('default' => array(
    'adapter' => 'Smtp',
    'host' => 'smtp.google.com',
    'port' => 587,
    'encryption' => 'tls',
    'username' => 'you@gmail.com',
    'password' => '#########'
)));

?>