bbottema / simple-java-mail

Simple API, Complex Emails (Jakarta Mail smtp wrapper)

Home Page:http://www.simplejavamail.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for parallel batch processing

bbottema opened this issue · 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).