Files
firefly-iii/app/config/mail.php

14 lines
307 B
PHP
Raw Normal View History

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