What all language components will have to be used for implementing an email service system using java?
Asked
Active
Viewed 1.3k times
9
-
What sort of email server? SMTP? IMAP? POP? – Quentin Mar 29 '10 at 08:20
3 Answers
16
If you want to implement an email server (SMTP, IMAP, POP3) - there is already Apache JAMES. It's open-source, so you can look into its sources if you insist on making one.
If you want to just send emails, having an already installed SMTP server, then use Simple Java Mail or commons-email. Both sit on top of Jakarta Mail (previously JavaMail) and are very developer-friendly.

Benny Bottema
- 11,111
- 10
- 71
- 96

Bozho
- 588,226
- 146
- 1,060
- 1,140
4
Maybe look at Apache JAMES.
The Apache JAMES Project delivers a rich set of open source modules and libraries, written in Java, related to internet mail and news which build into an advanced enterprise mail server.

Thilo
- 257,207
- 101
- 511
- 656