Closed as not planned

Description
Description
RoundRobinTransport constructor has retryPeriod
set to 60 seconds. This cannot be configured right now.
Let's say all the transports fail (e.g. email address with domain that does not exist).
Problems:
- When sending more than one email synchronously we can't send emails following the one that failed. We have to
sleep(x)
where x >= 60sec. (of course we have to handle the TransportException thrown by invalid email but this is another topic) - When using Messenger and async emails we don't have to worry about handling TransportException because invalid message will be sent back to the queue however the worker cannot consume another messages for the next 60 seconds. Also logs will be flooded with exceptions because in this 60s window a lot of messages could be tried.
Example
No response