The queue worker is a different PHP process than the web process, so Laravel will bootstrap itself by scratch thus reading configuration again, your custom mailer configurations will be lost as this separate process is not aware of the changes done in the web process. If you want to have th...
* Set to "horizon" if you wish to use Laravel Horizon. */ 'worker'=>env('RABBITMQ_WORKER','default'), ], and then we need to update the.envfile as follows: QUEUE_CONNECTION=rabbitmq RABBITMQ_DSN=amqp:// RABBITMQ_HOST=woodpecker.rmq.cloudamqp.com ...