All Questions
Tagged with message-queue email
3 questions
1
vote
1
answer
578
views
Queuing emails in Laravel when using an api driver such as Mailgun?
In Laravel (for the record I'm using v5.6) there is an option to queue emails for background processing.
I have a scheduled job to send out daily email alerts to users. Currently the job drops the ...
4
votes
1
answer
3k
views
Is it always the best way to go to queue emails instead of sending them real-time? [duplicate]
If you had to decide between queueing emails and sending them real-time, is it always the best way to go putting them in a queue and sending them one by one instead of instantly as soon as a user ...
2
votes
1
answer
162
views
Should I parse an email template before or after placing it in the queue?
I have a web application that sends out transactional (triggered) emails to users. We've setup a message queue for the web application to write to when it needs to send out an email (best practices ...