laravel使用队列发送邮件

时间:2018-09-10 08:50:00

标签: php laravel phpmailer laravel-queue

我想在用户在我的网站上进行注册后发送电子邮件。 我是否可以使用loc[start:end]发送它,所以效果很好。

Mail::send()

此电子邮件模板具有css和附件文件,所有这些都可以正常工作,但是发送时间很长。所以我像这样使用Mail::to($valuer)->send(new \App\Mail\RegistationConfirmed($course, $valuer));

queue

但是我在这里遇到了三个问题

Mail::to($valuer->email)->later(now()->addMinutes(2), new RegistationConfirmed($course, $valuer));

在删除数据透视表属性时,已收到电子邮件,但存在拖曳问题

 1. I can not access pivot table in the email view

这是我邮件中的 2. the email looks like not using css, so its just html 3. there is no attatchments in the email 方法

build

0 个答案:

没有答案