Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know any framework in Java for reliably sending a huge amount of emails with the following features:

  • Send and receive emails
  • Concurrently process emails from a queue to maximize the throughput
  • Keep track of emails that could not be delivered

I know that writing my own is not very hard, but I was wondering whether there is already something sophisticated that I can reuse.

UPDATE: The use case for my question is not sending newsletters or spam. It's emergency mass notification, e.g. sending 50,000 emails within 5 minutes. I also do not want to implement my own mail server, I want to use existing mail server(s) with the JavaMail API. But the JavaMail API doesn't provide any facilities for queing and concurrently sending emails and keeping track of emails that could not be sent.

share|improve this question
2  
"huge amount of emails"? I hope that you aren't talking about spam/newsletter without double-opt-in/similar stuff? – thejh Dec 12 '10 at 20:04
"is not very hard"... I do believe you are mistaken. Production mail servers are not easy to write. – Thorbjørn Ravn Andersen Dec 12 '10 at 20:17
There is a good chance your emails will end up in the spam-folder if you are going to sent out mass e-mails yourself. – Alfred Dec 12 '10 at 20:38
@thejh No, I'm not talking about spam/newsletter. I'm talking about emergency mass notification. @Thorbjørn Ravn Andersen: Sorry for not clearly stating this. I don't want to write my own mail server. I want to reuse existing mail servers using the JavaMail API. But the JavaMail API doesn't provide anything for concurrently sending and queing emails. @Alfred In my case, it is excluded that the emails will end up in spam, since the sender's address will be in the recipients address book. – Theo Dec 12 '10 at 21:10
What sort of emergency? Email isn't suitable for instant messaging. – reinierpost Feb 4 at 9:07

4 Answers

You use the Java Mail API to construct the actual messages you want to send, and let JavaMail use a production quality mail server to do the actual delivery.

An easy configuration to get up and running is postfix under Ubuntu Server.

Please, please, please do not send out unsolicited spam.

share|improve this answer

Send and receive emails? Perhaps you are looking for mailing list manager in Java? Take a look at Subetha which is successfully used in several production sites (and written in Java). http://code.google.com/p/subetha/

They have a sub module, called Subethasmtp, which you can use as a smtp server (in Java).

share|improve this answer

Try the Java Mail API. But for really bulk mailing you probably want to talk directly to SMTP.

share|improve this answer

You can use "JavaMail" or "GreenMail" for sending and receiving email

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.