There's a requirement in a web app I'm building about the possibility of the user sending join invitations to his friends. These invitations are stored in the database through the Invitation
model. The user can send multiple invitations at once.
What do you think is more appropriate: sending all emails at once in the back end view or sending one at time in Invitation post_save
?
Is there a substantial performance overhead to send one email at time?