4 * Mail configuration options.
6 * Changes to these config files are not supported by BookStack and may break upon updates.
7 * Configuration should be altered via the `.env` file or environment variables.
8 * Do not edit this file unless you're happy to maintain any changes yourself.
13 // Mail driver to use.
14 // Options: smtp, mail, sendmail, log
15 'driver' => env('MAIL_DRIVER', 'smtp'),
18 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
21 'port' => env('MAIL_PORT', 587),
23 // Global "From" address & name
25 'address' => env('MAIL_FROM', 'mail@bookstackapp.com'),
26 'name' => env('MAIL_FROM_NAME','BookStack')
29 // Email encryption protocol
30 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
32 // SMTP server username
33 'username' => env('MAIL_USERNAME'),
35 // SMTP server password
36 'password' => env('MAIL_PASSWORD'),
38 // Sendmail application path
39 'sendmail' => '/usr/sbin/sendmail -bs',
41 // Email markdown configuration
45 resource_path('views/vendor/mail'),