Serialization of 'Closure' is not allowed in Laravel 5.3 Email Queue

前端 未结 3 642
Happy的楠姐
Happy的楠姐 2021-01-07 22:51

I am willing to send email to list of email address using queue. Without using queue my code is working fine but with queue it\'s showing following error:

3条回答
  •  走了就别回头了
    2021-01-07 23:20

    It happened to me in Laravel 5.6. I just added this:

    use Illuminate\Support\Facades\Mail;
    

    And everything worked well.

提交回复
热议问题