Skip to content

Commit b51c3c0

Browse files
authored
Merge pull request #7 from CottaCush/fixes/typo-in-smtp-config
(Fixes): Correct typo in SMTP config
2 parents e3e638b + 5aa5063 commit b51c3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/config/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
'class' => 'Swift_SmtpTransport',
3030
'host' => getenv('SMTP_HOST'),
3131
'username' => getenv('SMTP_USERNAME'),
32-
'password' => getenv('SMTP_USERNAME'),
32+
'password' => getenv('SMTP_PASSWORD'),
3333
'port' => getenv('SMTP_PORT'),
3434
'encryption' => 'tls',
3535
],

0 commit comments

Comments
 (0)