I'm working on an app built with Laravel 4.2.
My app will send a pretty large amount of individual emails. The problem is that my SMTP server has a limit of max 300 mails/30 minutes and 5000 mails/day
That will be enough for me. But I would want to control the flow of sen email by queuing them up to be sent at a rate of max 300 mails/30 mins.
Is there a simple way of doing that, using Laravels libraries?