Add the mailgun domain and secret to your .env file:
MAILGUN_DOMAIN=......
MAILGUN_SECRET=......
And make sure config/services.php
has something like so:
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
],
And you should be good to go :)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community