#"Target class [mail.manager] does not exist." using Elastic Email

3 messages · Page 1 of 1 (latest)

shadow timber
#

In my Breeze app, I'm attempting to use the Elastic Email service for transactional emails, and I've followed the instructions (https://github.com/wouterdeberg/laravel-elastic-email) to install and configure the library. However, when I try to send the built-in password reset email, I get this error

Target class [mail.manager] does not exist.

I've verified that I have all the config steps completed. It doesn't look like the Password facade hard codes the built in MailServiceProvider class. I've also tried clearing my cache in case all of the config data wasn't being read, but that has no impact. Is there something else I need to do?

GitHub

Laravel Elastic Email is a wrapper for Elastic Email. You can send e-mails in your project just like you usually do with Laravel's native mailers, the package makes sure the e-mails are sen...

drowsy citrus
#

I think the docs are messed up. Did you see the "Upgrade Guide from V1 to V2" section? It says turn the MailServiceProvider back on

shadow timber
#

Oh yeah, I saw that. That worked. Thanks!