Merge pull request #4026 from trankten/patch-1

Allow email delivery using Google Workspace SMTP Relay by fixing EHLO authentication.
pull/4071/head
daniel 2023-01-08 13:42:23 -07:00 zatwierdzone przez GitHub
commit ce8343b05d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 14 dodań i 1 usunięć

Wyświetl plik

@ -85,8 +85,21 @@ return [
*/
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
/*
|--------------------------------------------------------------------------
| SMTP EHLO Domain
|--------------------------------------------------------------------------
|
| Some SMTP servers require to present a known domain in order to
| allow sending through its relay. (ie: Google Workspace)
| This will use the MAIL_SMTP_EHLO env variable to avoid the 421 error
| if not present by authenticating the sender domain instead the host.
|
*/
'local_domain' => env('MAIL_SMTP_EHLO'),
/*
|--------------------------------------------------------------------------