I’m trying to send mail in Laravel 5.4 project with Mailgun. I think I set the configuration correctly. But, I got this error message such as
ClientException in RequestException.php line 111:
Client error:POST https://api.mailgun.net/v3/sandboxfeb88d58f18841738b2fc81d7cbc7631.mailgun.org/messages.mime
>resulted in a401 UNAUTHORIZED
response:
Forbidden
Here is my configuration:
in .env file
MAIL_DRIVER=mailgun
MAILGUN_DOMAIN=sandboxfeb88d58f18841738b2fc81d7cbc7631.mailgun.org
MAILGUN_SECRET=pubkey-1767e**********
in mail.php file
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'from' => [
'address' => env('MAIL_FROM_ADDRESS', '[email protected]'),
'name' => env('MAIL_FROM_NAME', 'Richi Htoo'),
],
in services.php file
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
],
and I wrote mail sending code in default route such as
Route::get('/', function () {
//return view('welcome');
$data = [
'title' => 'Hi student I hope you like the course',
'content' => 'This laravel course was created with a lot of love and dedication for you'
];
Mail::send('emails.test', $data, function($message){
$message->to('[email protected]', 'White Nuzzle')->subject('Hello student how are you?');
});
});
And I also installed Laravel Package “guzzlehttp/guzzle” version 6.2 to send mail.
But when I call that default home route, I got an error message as I mention above.
I can’t find any solution for my error in any where including this forum “stackoverflow.com”.
Can anyone help me please?
Frankly it was quite an ordeal, I made the sandbox worked as following
- Added authorized recipient – Apparently sandbox can’t send email to
anyone, you need to add them as authorized recipient. - Use proper credentials in .env File added
MAILGUN_DOMAIN
andMAILGUN_SECRET
too as services.php uses them. RememberMAILGUN_SECRET
is the private key and starts withkey-
, don’t use public key here - Put
MAIL_DRIVER=mailgun
MAIL_HOST=smtp.mailgun.org
MAIL_PORT=587
[email protected]*****************.mailgun.org
MAIL_PASSWORD=******************
MAIL_ENCRYPTION=tls - !!!MOST IMPORTANT!!!! RESTART YOUR SERVER to load the new .env file.
Answer:
Make sure to check your credentials for the mailgun, make sure that those are correct.
Dont copy the Public Validation Key.
please copy the Private API Key
Answer:
Default Mail Driver: Mailgun
MAILGUN_DOMAIN=*your-domain*.mailgun.org
MAILGUN_SECRET=pubkey-*your-public-key*
Default Mail Driver: SMTP
[email protected]*your-domain*.mailgun.org
MAIL_PASSWORD=*your-password*
Don’t forget to php artisan config:clear
Answer:
Personally I never got the sandbox account to work. I just did this a little over a month ago. Sandbox never worked, but the live account I created did. Try switching to the live account and let me know if that works for you.
Answer:
Just go to the config folder. and made some changes..
'mailgun' => [
'domain' => env('your_domainxxxxxxx.mailgun.org'),
'secret' => env('key-xxxxxxxx_private_API_keyxxxx'),
],
error will be resolved.
Tags: laravel, php, phplaravel