且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Laravel:使用队列和作业发送电子邮件

更新时间:2023-02-25 11:41:38

传递详细信息数组在新的Mailfruit实例中。

Pass details array in the new instance of Mailfruit.


public function handle()
    {
        $email = new MailFruit($this->details);
        Mail::to($this->details['email'])->send($email);
    }