vote up 4 vote down star

Can anyone suggest a library for sending emails in Java?

flag

0% accept rate

4 Answers

vote up 4 vote down

You may also want to take a look at the Apache Commons Email library. It is featureful and easy to use.

You could do something along the lines of:

import org.apache.commons.mail.SimpleEmail;
...
String[] recipients = {"a@foo.com", "b@foo.com"};

SimpleEmail email = new SimpleEmail();
email.setHostName("mail.myserver.com");

for (int i = 0; i < recipients.length; i++)
{
    email.addTo(recipients[i]);
}

email.setFrom("me@apache.org", "Me");
email.setSubject("Test message");
email.setMsg("This is a simple test of commons-email");
email.send();

The sample code is taken from the Commons Email example page, modified to show adding multiple recipients. Hope that helps.

link|flag
hey will this with work with gmail smtp server? – unknown (google) May 11 at 15:42
you need to authenticate properly, but when that is done, you can use it with gmail – Thorbjørn Ravn Andersen May 12 at 7:15
vote up 8 vote down

Try Commons Mail. This builds on the Java Mail API but makes it much more simple to use.

link|flag
hey will common mail with work with gmail smtp server? – unknown (google) May 11 at 15:42
It works with any smtp server, just like any mail client. – Bishiboosh May 11 at 15:44
vote up 5 vote down

Spring has a mail wrapper layer as well:

http://static.springframework.org/spring/docs/2.5.6/reference/mail.html

link|flag
vote up 10 vote down

JavaMail API

link|flag

Your Answer

Get an OpenID
or

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