Throttling sends
Most email providers have a limit on how many emails you can send within a given amount of time. By default, five mails per second will be sent. In the config file you can customize this behavior by changing the throttling
key:
'throttling' => [ 'enabled' => false, 'redis_connection_name' => 'default', 'redis_key' => 'laravel-mailcoach', 'allowed_number_of_jobs_in_timespan' => 5, 'timespan_in_seconds' => 1, 'release_in_seconds' => 5, 'retry_until_hours' => 24, ],