You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Laravel has great mail support which could be extended with two extra feature.
Middleware for mails.
With mail middlewares one could add extra filters which modifies/extends the mail object or cancels the send event.
Failover driver.
One could register multiple mail driver which would fallback to the next in the row if the current one fails. I just recently experienced this issue with Mailgun which responded with 5xx status code. This could be an other fix next to using jobs for sending mail.
Laravel has great mail support which could be extended with two extra feature.
With mail middlewares one could add extra filters which modifies/extends the mail object or cancels the send event.
One could register multiple mail driver which would fallback to the next in the row if the current one fails. I just recently experienced this issue with Mailgun which responded with 5xx status code. This could be an other fix next to using jobs for sending mail.