-
Notifications
You must be signed in to change notification settings - Fork 47
Description
Hi there,
I had some trouble with my laravel 5.8 sending no emails anymore.
That was pretty strange because a day before every mail was sent successfully.
Finally I noticed, that the ExceptionMailer-class of this package as well as my own mailable-classes implemented the ShouldQueue-interface.
In the meantime, while I was included the sneaker-package, I also setted up the queue in my project. Doing so, every mail was submitted to the queue without any hint for me that it will not be sent. There is no queue worker setted up yet.
My question is: Even if I set up a queue worker to process the queued emails, how can I specify on wich queue they are submitted? Currently they are all put on the "default"-queue. I don't want to run in trouble because a specific queue worker cannot process different entities on the "default"-queue.
A change of the package-vendor-code would be my last resort but maybe you have another idea or prepared feature.
I would really appreciate any hints on this issue.
Thanks!