Laravel 8 推送到指定隊(duì)列

2021-07-19 10:49 更新

由于所有使用 make:mail 命令生成的 mailable 類都是用了 Illuminate\Bus\Queueable trait,因此你可以在任何 mailable 類實(shí)例上調(diào)用 onQueueonConnection 方法來(lái)指定消息的連接和隊(duì)列名:

$message = (new OrderShipped($order))
                ->onConnection('sqs')
                ->onQueue('emails');

Mail::to($request->user())
    ->cc($moreUsers)
    ->bcc($evenMoreUsers)
    ->queue($message); 
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)