Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed password reset view, added HTML email reset password email, and… #21

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=null
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=YOURgmailEMAILhere
MAIL_PASSWORD=YOURgmailPASSWORDhere
MAIL_ENCRYPTION=tls

THEME_NAME=clean-blog

Expand Down
5 changes: 4 additions & 1 deletion config/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,13 @@
'passwords' => [
'users' => [
'provider' => 'users',
'email' => 'auth.emails.password',
'email' => 'themes.'.env('THEME_NAME').'.emails.password',
'table' => 'password_resets',
'expire' => 60,
],
],

];



2 changes: 1 addition & 1 deletion config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
|
*/

'from' => ['address' => null, 'name' => null],
'from' => ['address' => env('MAIL_USERNAME'), 'name' => null],

/*
|--------------------------------------------------------------------------
Expand Down
Loading