Skip to content
Advertisement

Is there a way to delay a Mail by seconds or minutes when sending in laravel 5.8?

I have tried using later and queue then specified the seconds like below but i get an error saying “Only mailables may be queued

JavaScript

and

JavaScript

Here is my code when sending the email

JavaScript

Advertisement

Answer

The docs clearly describe how to delay mail sending:

Delayed Message Queueing

If you wish to delay the delivery of a queued email message, you may use the later method. As its first argument, the later method accepts a DateTime instance indicating when the message should be sent:

JavaScript

So in your case:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement