Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

laracasts9924's avatar

best approach for sending out mass emails & SMS message

Was wondering the best path forward to sending out mass emails and SMS message. For example, we have a daily message in our Intranet (built using Laravel 6). There is a daily message that needs to go out, using Emails and SMS notifications usually this will contain a link to a document or sometimes just text content.

Doing research since I have never worked with any of Laravels broadcasting, notifications, etc.. what would be the best way to approach this?

0 likes
2 replies
drewdan's avatar
drewdan
Best Answer
Level 15

I think you would want to approach this using queues and dispatching jobs: https://laravel.com/docs/7.x/queues

Create a job which dispatches the email. And then just loop through the users to queue the jobs, you will probably want to add some delay to it to prevent the email server from getting upset.

laracasts9924's avatar

thanks drewdan for the advice. I will take a look at going this direction.

Thanks, Darreb

Please or to participate in this conversation.