编程语言
首页 > 编程语言> > php-在laravel中发送邮件之前加载图像/栏

php-在laravel中发送邮件之前加载图像/栏

作者:互联网

我想在服务器花时间将电子邮件发送给laravel中的指定用户时显示加载图像或栏.是否有任何laravel软件包可以这样做?

解决方法:

您应该使用queues.从the docs开始:

Since sending email messages can drastically lengthen the response time of your application, many developers choose to queue email messages for background sending. Laravel makes this easy using its built-in unified queue API. To queue a mail message, use the queue method on the Mail facade after specifying the message’s recipients:

Mail::to($request->user())
    ->cc($moreUsers)
    ->bcc($evenMoreUsers)
    ->queue(new OrderShipped($order));

https://laravel.com/docs/5.5/mail#queueing-mail

标签:laravel,progress-bar,php
来源: https://codeday.me/bug/20191110/2013943.html