Hi friends, just a simple question (maybe someone has done it?). Is there any method available that optimizes the sending of notifications for groups with a large amount of members (near 4000)?
The first idea i was thougth is to avoid the database dependency (basically to eliminate the transactions) because i think is not a priority task and introduces payloads on the servers (while it is serving notifications one by one...). So the second idea is to use dynamic list of email members, then only one transaction is done and the email is sent to this list. Perhaps, the email servers with restictions on the number of recipients will have problems but it is easy to include a parameter in the notifications package in order to build n dinamic list (number of members / max number of recipients).
Any idea?
Cheers