如何在我的 laravel 应用程序中正确设置 mailgun?

How to properly setup mailgun in my laravel app?

我正在尝试在我的 laravel 应用程序中设置 mailgun,但无论我尝试什么,都无法发送电子邮件。

我的环境文件看起来像

MAIL_DRIVER=mailgun
MAILGUN_DOMAIN=https://api.mailgun.net/v3/sandbox....
MAILGUN_SECRET=key

没有抛出任何错误。

最佳

环境应该是这样的:

MAIL_DRIVER=mailgun
MAILGUN_DOMAIN=mg.YOUR_DOMAIN.com
MAILGUN_SECRET=YOUR_KEY_HERE

更多信息:https://www.mailgun.com/blog/build-laravel-5-7-email-authentication-mailgun-digital-ocean/