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!!
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
Same here, any suggestions? "Client error response [url] https://api.mailgun.net/v2//messages.mime [status code] 404 [reason phrase] NOT FOUND"
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',
],
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',
],
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
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community