mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-14 03:05:46 +01:00
0aaa86224e
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/
23 lines
827 B
PHP
Executable File
23 lines
827 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reset Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are the default lines which match reasons
|
|
| that are given by the password broker for a password update attempt
|
|
| has failed, such as for an invalid token or invalid new password.
|
|
|
|
|
*/
|
|
|
|
'reset' => 'Your password has been reset!',
|
|
'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.',
|
|
'throttled' => 'Please wait before retrying.',
|
|
'token' => 'This password reset token is invalid.',
|
|
'user' => "We can't find a user with that email address.",
|
|
|
|
];
|