firefly-iii/app/config/mail.php

14 lines
308 B
PHP
Raw Normal View History

2014-06-28 02:41:44 -05:00
<?php
return [
'driver' => 'smtp',
'host' => '',
'port' => 587,
2014-07-04 02:17:21 -05:00
'from' => ['address' => '', 'name' => 'Firefly III'],
'encryption' => 'tls',
2014-06-30 06:23:48 -05:00
'username' => '',
'password' => '',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
];