Merge pull request #2613 from klepek/master

Configuragble Mailgun endpoint
This commit is contained in:
James Cole 2019-09-17 19:19:52 +02:00 committed by GitHub
commit 845e67e9be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -88,6 +88,8 @@ MAIL_ENCRYPTION=null
# Other mail drivers:
MAILGUN_DOMAIN=
MAILGUN_SECRET=
# If you are on EU region in mailgun, use api.eu.mailgun.net, otherwise use api.mailgun.net
MAILGUN_ENDPOINT=api.mailgun.net
MANDRILL_SECRET=
SPARKPOST_SECRET=

View File

@ -38,6 +38,7 @@ return [
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'endpoint' => env('MAILGUN_ENDPOINT','api.mailgun.net'),
'secret' => env('MAILGUN_SECRET'),
],