Ticket #865 (open enhancement)
Using queues for mails ?
- Created: 2013-06-05 12:17:38
- Reported by: AoSiX
- Assigned to: None
- Milestone: 2.0-alpha5
- Component: code
- Priority: normal
Hello everyone,
With Laravel, there is a powerful queue system. Thanks to this, we can easily deffer some long tasks as sending mail.
In the code, instead of Maill:send, we have to user Mail::queue.
I know that only a few poeple will use that, BUT Laravel provide a queue driver named "sync", which basically means "no queue". And then, in a future milestone, we could let the user configure a queue system if he want's to use it, whithout having to search every Mail::send instance.