I have installed and followed instructions as directed, everything fires and seems to work, however no emails are being sent or received. I am using sandbox settings locally.
I have this as a test
Mailgun::raw("This is the email body", function ($message) {
$message->to('mytestemail@gmail.com', 'John Doe')->subject('Welcome!');
});
I had a look to see if its running and had a look at the mailer.php and the response is as below.
I have all the correct details in the .env file too, the mailgun set up also correct. I am wondering (and forgive my ignorance) but perhaps I might have missed something on this section.
$this->app->bind('mailgun.client', function() {
return \Http\Adapter\Guzzle6\Client::createWithConfig([]); // what Guzzle6 configuration would I need?
});
Hi there.
I have installed and followed instructions as directed, everything fires and seems to work, however no emails are being sent or received. I am using sandbox settings locally.
I have this as a test
I had a look to see if its running and had a look at the mailer.php and the response is as below.
I have all the correct details in the .env file too, the mailgun set up also correct. I am wondering (and forgive my ignorance) but perhaps I might have missed something on this section.
PS. I have tried this for Guzzle settings
I appreciate your help.