|
|
|
@ -54,7 +54,10 @@ return [ |
|
|
|
| |
|
|
|
*/ |
|
|
|
|
|
|
|
'from' => ['address' => env('MAIL_FROM', 'mail@app.dev'), 'name' => env('MAIL_NAME', 'Laravel')], |
|
|
|
'from' => [ |
|
|
|
'address' => env('MAIL_FROM', 'mail@app.dev'), |
|
|
|
'name' => env('MAIL_NAME', 'Laravel'), |
|
|
|
], |
|
|
|
|
|
|
|
/* |
|
|
|
|-------------------------------------------------------------------------- |
|
|
|
@ -82,30 +85,38 @@ return [ |
|
|
|
|
|
|
|
'username' => env('MAIL_USERNAME'), |
|
|
|
|
|
|
|
'password' => env('MAIL_PASSWORD'), |
|
|
|
|
|
|
|
/* |
|
|
|
|-------------------------------------------------------------------------- |
|
|
|
| SMTP Server Password |
|
|
|
| Sendmail System Path |
|
|
|
|-------------------------------------------------------------------------- |
|
|
|
| |
|
|
|
| Here you may set the password required by your SMTP server to send out |
|
|
|
| messages from your application. This will be given to the server on |
|
|
|
| connection so that the application will be able to send messages. |
|
|
|
| When using the "sendmail" driver to send e-mails, we will need to know |
|
|
|
| the path to where Sendmail lives on this server. A default path has |
|
|
|
| been provided here, which will work well on most of your systems. |
|
|
|
| |
|
|
|
*/ |
|
|
|
|
|
|
|
'password' => env('MAIL_PASSWORD'), |
|
|
|
'sendmail' => '/usr/sbin/sendmail -bs', |
|
|
|
|
|
|
|
/* |
|
|
|
|-------------------------------------------------------------------------- |
|
|
|
| Sendmail System Path |
|
|
|
| Markdown Mail Settings |
|
|
|
|-------------------------------------------------------------------------- |
|
|
|
| |
|
|
|
| When using the "sendmail" driver to send e-mails, we will need to know |
|
|
|
| the path to where Sendmail lives on this server. A default path has |
|
|
|
| been provided here, which will work well on most of your systems. |
|
|
|
| If you are using Markdown based email rendering, you may configure your |
|
|
|
| theme and component paths here, allowing you to customize the design |
|
|
|
| of the emails. Or, you may simply stick with the Laravel defaults! |
|
|
|
| |
|
|
|
*/ |
|
|
|
|
|
|
|
'sendmail' => '/usr/sbin/sendmail -bs', |
|
|
|
'markdown' => [ |
|
|
|
'theme' => 'default', |
|
|
|
|
|
|
|
'paths' => [ |
|
|
|
resource_path('views/vendor/mail'), |
|
|
|
], |
|
|
|
], |
|
|
|
|
|
|
|
]; |