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

前端 未结 3 660
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:07

    Try removing this line from constructor:

    $this->message = new Message();
    

    and, in the handle directly initialise it.

    $student = $this->data;
    $arrStudent = (new Message())->getEmailAddressList($student);
    Mail::to($arrStudent)->send(new MessageSent($student));
    

提交回复
热议问题