1
我在Laravel 5.1中使用Iron.io API。它發送電子郵件罰款。但是,它似乎一遍又一遍地發送相同的消息(4次或更多)。任何想法爲什麼會發生?Laravel隊列(iron.io)不斷髮送相同的電子郵件
我使用的代碼是:
Mail::queue([], [], function ($message) use ($template, $order, $filename) {
$message
->to($order->email)
->subject($template->subject)
->setBody(DbView::make($template)->with($order->toArray())->render(), 'text/html');
$message->attach(storage_path('exports/'.$filename));
});
你叫'$求職>刪除()'在你的工作,從隊列它完成時將其刪除? –
不,我不知道我需要這樣做?這需要去哪裏? – V4n1ll4
在你的工作結束後,你確定工作應該做的事情成功發生之後。 –