Laravel 邮件队列没有投递到 mailtrap
Laravel mail queue not posting to mailtrap
我一直在努力让 Laravel 的队列工作几个小时,但无济于事,我不知道发生了什么;我认为队列正在工作,因为它们正在 posting 到数据库,但我不明白的是为什么它们不执行并 posting 到 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
]);
}
}
确实很基础,但我不明白为什么它不 post发送或发送到邮件陷阱;尽管我的 Jobs
table 充满了不会 post.
的队列
有没有人遇到过这个问题?如果是这样,有人知道解决方案是什么 - 我尝试了 php artisan queue:work
和 php artisan queue:listen
但他们没有 post 终端上的任何东西。
更新:
我试过 php artisan queue:work --queue=high, emails
输出是
Processing: App\Mail\Notification
但它仍然没有向 Mailtrap 发送任何邮件。
您的通知中似乎没有设置 public function via()
。您需要指定您希望如何发送通知。
public function via($notifiable)
{
return ['mail'];
}
此外,通知通常扩展 Illuminate\Notifications\Notification
。
没关系,看起来您没有使用内置的通知系统。我的猜测是这个问题:
$mailQueue = (new SendNotification($contact))
->delay(5);
如果您查看文档,它会将 Carbon 对象传递到延迟中。
$job = (new ProcessPodcast($podcast))
->delay(Carbon::now()->addMinutes(10));
我一直在努力让 Laravel 的队列工作几个小时,但无济于事,我不知道发生了什么;我认为队列正在工作,因为它们正在 posting 到数据库,但我不明白的是为什么它们不执行并 posting 到 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
]);
}
}
确实很基础,但我不明白为什么它不 post发送或发送到邮件陷阱;尽管我的 Jobs
table 充满了不会 post.
有没有人遇到过这个问题?如果是这样,有人知道解决方案是什么 - 我尝试了 php artisan queue:work
和 php artisan queue:listen
但他们没有 post 终端上的任何东西。
更新:
我试过 php artisan queue:work --queue=high, emails
输出是
Processing: App\Mail\Notification
但它仍然没有向 Mailtrap 发送任何邮件。
您的通知中似乎没有设置 public function via()
。您需要指定您希望如何发送通知。
public function via($notifiable)
{
return ['mail'];
}
此外,通知通常扩展 Illuminate\Notifications\Notification
。
没关系,看起来您没有使用内置的通知系统。我的猜测是这个问题:
$mailQueue = (new SendNotification($contact))
->delay(5);
如果您查看文档,它会将 Carbon 对象传递到延迟中。
$job = (new ProcessPodcast($podcast))
->delay(Carbon::now()->addMinutes(10));