|
36 | 36 | 'mailers' => [
|
37 | 37 | 'smtp' => [
|
38 | 38 | 'transport' => 'smtp',
|
39 |
| - 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), |
40 |
| - 'port' => env('MAIL_PORT', 587), |
41 |
| - 'encryption' => env('MAIL_ENCRYPTION', 'tls'), |
| 39 | + 'host' => env('MAIL_HOST'), |
| 40 | + 'port' => env('MAIL_PORT'), |
| 41 | + 'encryption' => env('MAIL_ENCRYPTION'), |
42 | 42 | 'username' => env('MAIL_USERNAME'),
|
43 | 43 | 'password' => env('MAIL_PASSWORD'),
|
44 | 44 | 'timeout' => null,
|
45 | 45 | 'auth_mode' => null,
|
| 46 | + 'from' => [ |
| 47 | + 'address' => env('MAIL_FROM_ADDRESS'), |
| 48 | + 'name' => env('MAIL_FROM_NAME'), |
| 49 | + ], |
46 | 50 | ],
|
47 | 51 |
|
48 |
| - 'ses' => [ |
49 |
| - 'transport' => 'ses', |
50 |
| - ], |
51 |
| - |
52 |
| - 'mailgun' => [ |
53 |
| - 'transport' => 'mailgun', |
54 |
| - ], |
55 |
| - |
56 |
| - 'postmark' => [ |
57 |
| - 'transport' => 'postmark', |
58 |
| - ], |
59 | 52 |
|
60 |
| - 'sendmail' => [ |
61 |
| - 'transport' => 'sendmail', |
62 |
| - 'path' => '/usr/sbin/sendmail -bs', |
63 |
| - ], |
| 53 | + /* |
| 54 | + |-------------------------------------------------------------------------- |
| 55 | + | Built in SMTP server |
| 56 | + |-------------------------------------------------------------------------- |
| 57 | + | |
| 58 | + | LittleLink Custom now includes an open and free to use SMTP server. |
| 59 | + | Mails from this service may only be used for |
| 60 | + | password recovery and registration purposes involving |
| 61 | + | users personal LittleLink Custom or LittleLink Admin pages. |
| 62 | + | Users of this service must abide by our Terms and Conditions |
| 63 | + | found at https://llc-mail.tru.io/. |
| 64 | + | |
| 65 | + */ |
64 | 66 |
|
65 |
| - 'log' => [ |
66 |
| - 'transport' => 'log', |
67 |
| - 'channel' => env('MAIL_LOG_CHANNEL'), |
| 67 | + 'built-in' => [ |
| 68 | + 'transport' => 'smtp', |
| 69 | + 'host' => 'llc-mail.tru.io', |
| 70 | + 'port' => '587', |
| 71 | + 'encryption' => 'tls', |
| 72 | + 'username' => '[email protected]', |
| 73 | + 'password' => 'fTwsn=eNB4', |
| 74 | + 'timeout' => null, |
| 75 | + 'auth_mode' => null, |
| 76 | + 'from' => [ |
| 77 | + |
| 78 | + 'name' => env('MAIL_FROM_NAME'), |
| 79 | + ], |
68 | 80 | ],
|
69 | 81 |
|
70 |
| - 'array' => [ |
71 |
| - 'transport' => 'array', |
72 |
| - ], |
73 | 82 | ],
|
74 | 83 |
|
| 84 | + |
75 | 85 | /*
|
76 | 86 | |--------------------------------------------------------------------------
|
77 | 87 | | Global "From" Address
|
|
83 | 93 | |
|
84 | 94 | */
|
85 | 95 |
|
86 |
| - 'from' => [ |
87 |
| - 'address' => env( 'MAIL_FROM_ADDRESS', '[email protected]'), |
88 |
| - 'name' => env('MAIL_FROM_NAME', 'Example'), |
89 |
| - ], |
90 |
| - |
91 | 96 | /*
|
92 | 97 | |--------------------------------------------------------------------------
|
93 | 98 | | Markdown Mail Settings
|
|
0 commit comments