从java发送邮件

时间:2009-08-17 11:26:46

标签: java email-integration email-client

在java中发送和接收邮件的最简单方法是什么。

4 个答案:

答案 0 :(得分:10)

不要忘记Jakarta Commons Email发送邮件。它有一个非常容易使用的API。

答案 1 :(得分:7)

JavaMail是发送电子邮件的传统答案(正如大家所指出的那样)。

但是,如果您还想接收邮件,则应该查看Apache James。它是一个模块化的邮件服务器,可配置很多。它将讨论POP和IMAP,支持自定义插件,并且可以嵌入到您的应用程序中(如果您愿意)。

答案 2 :(得分:4)

检查this个包裹。从链接中,这是一个代码示例:

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);
}

答案 3 :(得分:1)

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();
}