向所有用户发送通知的最快方式 laravel

fastest way to send notification to all user laravel

我正在 laravel 中构建一个应用程序,一旦我创建了一个新频道,我就会向所有用户发送邮件通知。到目前为止我正在使用

$users=User::all();
 \Illuminate\Support\Facades\Notification::send($users,new NewChannel($channel));

向所有用户发送通知。是否有任何包或方法可以使过程更快?仅 5 个用户就已经花费了数年时间

您可以查看 queues to make the request more responsive, though it will take the same time to process the mails but it will happen in background. Another approach would be to use a third party service like sendGrid 以从您的终端移除处理。