我一直试图让Laravel的排队工作几个小时而无济于事我不知道发生了什么事情;我认为队列正在发挥作用,因为他们发布到数据库,但我不明白为什么他们不执行并发布到mailtrap。
我已将.env
文件设置为database
QUEUE_DRIVER=database
我的控制器:
$mailQueue = (new SendNotification($contact))
->delay(5);
dispatch($mailQueue);
我的发送通知工作:
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Mail;
use App\Mail\Notification;
class SendNotification implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $contact;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($contact)
{
$this->contact = $contact;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$notification = (new Notification($contact));
Mail::to('email')
->queue($notification);
}
}
最后,我的Mailable:
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Queue\ShouldQueue;
class Notification extends Mailable
{
use Queueable, SerializesModels;
protected $contact;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct($contact)
{
$this->contact = $contact;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->view('mail.notify')
->with([
'notifyName' => $this->request->name,
'notifySubject' => $this->request->subject
]);
}
}
非常基本,但我不明白为什么它不发布或发送到Mail陷阱;虽然我的Jobs
表中填充了不会发布的队列。
有没有人遇到过这个问题?如果是这样,任何人都知道解决方案是什么 - 我尝试php artisan queue:work
和php artisan queue:listen
,但他们不会在终端上发布任何内容。
更新:
我尝试了php artisan queue:work --queue=high, emails
输出
Processing: App\Mail\Notification
但它仍然没有向Mailtrap发送任何邮件。
答案 0 :(得分:0)
看起来您的通知中没有设置public function via()
。您需要指定通知的传递方式。
public function via($notifiable)
{
return ['mail'];
}
通知也通常延长Illuminate\Notifications\Notification
。
Nevermind看起来好像没有使用内置的通知系统。我的猜测是问题在于:
$mailQueue = (new SendNotification($contact))
->delay(5);
如果您查看文档,它会将Carbon对象传递给延迟。
$job = (new ProcessPodcast($podcast))
->delay(Carbon::now()->addMinutes(10));