bbottema/simple-java-mail

Add support for parallel batch processing

bbottema opened this issue · 2 comments

Make sending mails optionally async (threaded)

When sending multiple mails in quick succession, the current process is very slow because every mail being sent has to wait for the previous mail to finish.

There should be an option to do it asynchronously using new threads.

Fixed.

More advanced batch processing use cases are now supported as well (see #214).