vote up 0 vote down star

What is the easiest way to send and receive mails in java.

flag

stackoverflow.com/questions/561011/… – adamantium Aug 17 at 11:29
stackoverflow.com/questions/848645/… – adamantium Aug 17 at 11:30
Define "easiest". – Thorbjørn Ravn Andersen Aug 17 at 11:31
Email? Postal mail? – Nick Veys Oct 23 at 21:13

5 Answers

vote up 5 vote down check

Don't forget Jakarta Commons Email for sending mail. It has a very easy to use API.

link|flag
+1. Didn't know it existed – Brian Agnew Aug 17 at 11:55
this is what i was looking for.....thanks..a..lot.. – cdb Aug 17 at 12:26
vote up 3 vote down

Check this package out. From the link, here's a code sample:

Properties props = new Properties();
props.put("mail.smtp.host", "my-mail-server");
props.put("mail.from", "me@example.com");
Session session = Session.getInstance(props, null);

try {
    MimeMessage msg = new MimeMessage(session);
    msg.setFrom();
    msg.setRecipients(Message.RecipientType.TO,
                      "you@example.com");
    msg.setSubject("JavaMail hello world example");
    msg.setSentDate(new Date());
    msg.setText("Hello, world!\n");
    Transport.send(msg);
} catch (MessagingException mex) {
    System.out.println("send failed, exception: " + mex);
}
link|flag
vote up 5 vote down

JavaMail is the traditional answer for sending email (as everyone's pointing out).

As you also want to receive mail, however, you should check out Apache James. It's a modular mail server and heavily configurable. It'll talk POP and IMAP, supports custom plugins and can be embedded in your application (if you so wish).

link|flag
vote up 1 vote down
try {
Properties props = new Properties();
props.put("mail.smtp.host", "mail.server.com");
props.put("mail.smtp.auth","true");
props.put("mail.smtp.user", "test@server.com");
props.put("mail.smtp.port", "25");
props.put("mail.debug", "true");

Session session = Session.getDefaultInstance(props);

MimeMessage msg = new MimeMessage(session);

msg.setFrom(new InternetAddress("test@server.com"));

InternetAddress addressTo = null;
addressTo = new InternetAddress("test@mail.net");
msg.setRecipient(javax.mail.Message.RecipientType.TO, addressTo);

msg.setSubject("My Subject");
msg.setContent("My Message", "text/html; charset=iso-8859-9");

Transport t = session.getTransport("smtp");   
t.connect("test@server.com", "password");
t.sendMessage(msg, msg.getAllRecipients());
t.close();
} catch(Exception exc) {
  exc.printStackTrace();
}
link|flag
vote up 2 vote down

If you want to use Gmail as mail server look at this LINK

link|flag
FYI the link above is broken – delux247 Oct 22 at 21:38
Link is fixed. . – Chris Kaminski Oct 23 at 20:43
The code from your link really works! I tried many other snippets, and this is the first that works. – True Soft Dec 17 at 9:53

Your Answer

Get an OpenID
or

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