I think it might have something to do with how F3 is closing smtp connections after sending mails... However, it might also be F3 Mailer, since I use that plugin. Opened an issue for this.
Just a copy-paste of the issue from my side:
The mail plugin causes problems when sending emails in bulk. I use AWS SES and have already adjusted the limits, so AWS should not throw any errors here. However, I still receive smtp errors. It seems that the open connections are not being closed properly.
The error I get:
`SMTP dialog error: 421 Throttling failure: Too many open connection from Account. Try again later. `
I call the F3 mailer by creating an instance and send a mail for every recipient, by doing so:
```
foreach($recipients as $r) {
$mailer = new Mailer();
$mailer->addTo($recipient, null);
...
$mailer->send();
}
```
The number of recipients in my case is +/- 400. I suspect F3 is not closing the connection properly, but just want to make sure it is not the F3 mailer as well.
Op zondag 28 april 2024 om 20:06:38 UTC+2 schreef Yoeri Nijs: