Reputation: 603
I need to provide email sending and receiving capabilities within my java web-application. Think of it as providing a lightweight IMAP client embedded within the application.
Are there any good java based open-source libraries/projects/webmail solutions that provide similar functionality?
Please note that I don't want to emails would still be retrieved from the email server external to my application, I just need to provide an interface (matching the rest of my application) and accessible from within the application, to carry out common email operations such as reading and sending emails.
Regards,
-Deepak
Upvotes: 2
Views: 6452
Reputation: 1
webmail system with chat module developed in JAVA : http://www.jtechnosoft.com/ZkMail/
Upvotes: -1
Reputation: 11
Webmail System with chat module developed in java/j2ee (AJAX based)
For more information visit: http://jtechnoprojects.blogspot.com/p/webmail-system-with-chating-ajax-based.html
Demo Webmail System is a fully functional webmail system like gmail that provides all the webmail functionality.
It also includes chat module like in gmail, yahoo that provides intuitive chat functionality. It can be useful for schools, colleges, universities and other organizations.
Webmail system features:
All the basic functions like in any other webmail system.
Technology used:
JAVA (Java Mail API, Multithreading), JSP, Servlet, ZK
HMailserver email server
Mysql Database
Upvotes: 1
Reputation: 223173
The "canonical" Java IMAP solution would, in my experience, be JavaMail. And yes, that's open-source now, too: https://maven-repository.dev.java.net/nonav/repository/javax.mail/java-sources/
Upvotes: 7
Reputation: 5642
A quick search for 'java IMAP library' gave me http://www.chilkatsoft.com/java-imap.asp
Looks like all the dreams, that I'm aware you have, have come true :)
Upvotes: 0