Я пытаюсь отправить почтовые уведомления подписчикам моего блога. Но после 2 отправленных писем я получаю эту ошибку:
Ожидаемый код ответа 354, но получен код "550" с сообщением "550 5.7.0 Запрошенное действие не выполнено: слишком много писем в секунду
Код контроллера:
// subscriber notification
$subscribers = Subscriber::all();
foreach ($subscribers as $subscriber) {
Notification::route('mail', $subscriber->email)->notify(new NewPost($post));
}
Код уведомления:
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
class NewPost extends Notification implements ShouldQueue
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public $post;
public function __construct($post)
{
$this->post = $post;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->greeting('Hell, Subscriber :)')
->subject('New Post Available')
->line('There is a new post, we hope you will like it.')
->line('Post Title'.$this->post->title)
->action('View', url('/'))
// action('View', url(route('author.post.show',$this->post->id)))
->line('Thank you, for using our application');
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
Как можно решить эту проблему и как сократить время ее загрузки?