skip to Main Content

Send email in Laravel 11

I would like to send an email using Laravel, but I am getting an error, I am sending it this way: UsersController.php .... $user_created = (new UserCreated($user)) ->onQueue('emails')->afterCommit(); Mail::to($user->email) ->queue($user_created); ..... This is the mailable: UserCreated.php <?php namespace AppMail; use…

VIEW QUESTION
Back To Top
Search