Sending email is easy with commons-email, and with spring it is even easier. What about receiving incoming email? Are there easy to use APIs that allow to bounce emails, process attachments, etc.
What is the easiest way for a Java application to receive incoming email?
20.5k Views Asked by flybywire At
6
There are 6 best solutions below
2

James is probably your best bet, but email handling is extremely complex, requiring not only configuration of your MTA (the James server), but also DNS. In the past, I've found it easier to initiate my handlers via hooks from non-Java MTA's like postfix. And procmail might also be useful to you. For a Java MTA though, James rocks.
SubEthaSMTP Mail Server allows you to create your own SMTP Server for receiving emails.