Support the ongoing development of Laravel.io →
Configuration Mail

Hello.

I am trying to use the Mailgun driver in my laravel app. I have followed the instructions here http://laravel.com/docs/4.2/mail#configuration. However when I try to send an email I receive the following error.

GuzzleHttp \ Exception \ ClientException (404)
Client error response [url] https://api.mailgun.net/v2//messages.mime [status code] 404 [reason phrase] NOT FOUND

From a little research, I saw in the mailgun api that the api endpoint is https://api.mailgun.net/v2/{DOMAIN_NAME} so for some reason my domain name is not being set even though I have it in the config file as specified by the instructions above. This has been driving me crazy and any help would be greatly appreciated!!

Last updated 2 years ago.
0

I have the same problem

Client error response [url] https://api.mailgun.net/v2/https://api.mailgun.net/v2//.mailgun.org/messages.mime [status code] 404 [reason phrase] NOT FOUND

2 months ago configured it and it worked perfect, but not anymore

0

Same here, any suggestions? "Client error response [url] https://api.mailgun.net/v2//messages.mime [status code] 404 [reason phrase] NOT FOUND"

0

I had this issue but I had forgotten to add my domain and secret under /config/services.php

	'mailgun' => [
    'domain' => 'your-mailgun-domain',
    'secret' => 'your-key',
],
0

Thanks you @dylanglockler.

dylanglockler said:

I had this issue but I had forgotten to add my domain and secret under /config/services.php

  'mailgun' => [
   'domain' => 'your-mailgun-domain',
   'secret' => 'your-key',

],

0

itsazzad said:

Thanks you @dylanglockler.

dylanglockler said:

I had this issue but I had forgotten to add my domain and secret under /config/services.php

 'mailgun' => [
   'domain' => 'your-mailgun-domain',
   'secret' => 'your-key',

],

Except that everyone shows yourdomain.com in examples, but really you need to sent it to mg.yourdomain.com as per the DNS domain setup procedure that mailgun.com guides you through on setup of account

Last updated 9 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

ddelnano ddelnano Joined 15 Mar 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.