Search code examples
laravelemaillaravel-5email-validationlaravel-5.7

Laravel 5.7 - Verification email is not sent


I've upgraded my laravel instance from version 5.6 to version 5.7. Now I try to use the built-in email verification from laravel.

My problem is that I don't get an email after successful registration when I use the "resend" function the email arrives.

What is the problem?


Solution

  • If you have a custom registration page, you could just fire the event after you have created the user like so:

    event(new Registered($user));