Skip to content

Commit 0aaa862

Browse files
committed
Built in SMTP server
LittleLink Custom now includes an open and free to use SMTP server. Mails from this service may only be used for password recovery and registration purposes involving users personal LittleLink Custom or LittleLink Admin pages. Users of this service must abide by our Terms and Conditions found at https://llc-mail.tru.io/. Motivations for this are explained on my blog post about this topic, which you can read here: https://blog.littlelink-custom.com/littlelink-custom-mail-server/
1 parent d8482e3 commit 0aaa862

File tree

2 files changed

+35
-30
lines changed

2 files changed

+35
-30
lines changed

config/mail.php

Lines changed: 34 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -36,42 +36,52 @@
3636
'mailers' => [
3737
'smtp' => [
3838
'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'),
4242
'username' => env('MAIL_USERNAME'),
4343
'password' => env('MAIL_PASSWORD'),
4444
'timeout' => null,
4545
'auth_mode' => null,
46+
'from' => [
47+
'address' => env('MAIL_FROM_ADDRESS'),
48+
'name' => env('MAIL_FROM_NAME'),
49+
],
4650
],
4751

48-
'ses' => [
49-
'transport' => 'ses',
50-
],
51-
52-
'mailgun' => [
53-
'transport' => 'mailgun',
54-
],
55-
56-
'postmark' => [
57-
'transport' => 'postmark',
58-
],
5952

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+
*/
6466

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+
'address' => '[email protected]',
78+
'name' => env('MAIL_FROM_NAME'),
79+
],
6880
],
6981

70-
'array' => [
71-
'transport' => 'array',
72-
],
7382
],
7483

84+
7585
/*
7686
|--------------------------------------------------------------------------
7787
| Global "From" Address
@@ -83,11 +93,6 @@
8393
|
8494
*/
8595

86-
'from' => [
87-
'address' => env('MAIL_FROM_ADDRESS', '[email protected]'),
88-
'name' => env('MAIL_FROM_NAME', 'Example'),
89-
],
90-
9196
/*
9297
|--------------------------------------------------------------------------
9398
| Markdown Mail Settings

resources/lang/en/passwords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
'reset' => 'Your password has been reset!',
17-
'sent' => 'We have emailed your password reset link!',
17+
'sent' => 'We have emailed your password reset link! If you do not see the email in a few minutes, check your junk mail or spam folder.',
1818
'throttled' => 'Please wait before retrying.',
1919
'token' => 'This password reset token is invalid.',
2020
'user' => "We can't find a user with that email address.",

0 commit comments

Comments
 (0)