Table of Contents

, ,

Send delayed mail via Laravel queue

Change DB driver

In .env file put

QUEUE_DRIVER=database

insted of

QUEUE_DRIVER=sync

Run queue in background

nohup php artisan queue:work --daemon &

Tested on

References