从网络应用发送电子邮件的推荐方法?

时间:2009-07-07 15:00:35

标签: email jboss java-ee smtp javax.mail

我在JBoss 4.2.3上有一个Web应用程序,我希望它能够发送电子邮件。我可以做类似的事情:

try {
Properties props = System.getProperties();
props.put("mail.transport.protocol", "smtp" );
props.put("mail.smtp.starttls.enable","false" );
props.put("mail.smtp.host","smtp.somehost.com");
props.put("mail.smtp.auth", "true" );
Authenticator auth = new SMTPAuthenticator();
Session session = Session.getInstance(props, auth);
// -- Create a new message --
Message msg = new MimeMessage(session);
// -- Set the FROM and TO fields --
msg.setFrom(new InternetAddress("me@somehost.com"));
msg.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("recipient@somewhere.com", false));
msg.setSubject("yadayada");
msg.setText("Yada yada");
// -- Set some other header information --
msg.setHeader("MyMail", "Mr. XYZ" );
msg.setSentDate(new Date());
// -- Send the message --
Transport.send(msg);
}
catch (Exception ex) {
  ex.printStackTrace();
  System.out.println("Exception "+ex);
}

但感觉不对。这会扩大吗?

2 个答案:

答案 0 :(得分:1)

使用Spring使用Spring Mail Abstraction Layer

答案 1 :(得分:1)

您发送了多少条消息?你有没有测量上面运行多长时间? (我假设主要的时间汇在实际的send()到MTA。这是否有意义是另一回事)

也许:

  1. 您需要将消息排队以便在队列中发送到MTA,并让发送在单独的线程中运行吗?
  2. 您需要设置适当的邮件列表/别名,因此只为“n”个收件人发送一封邮件吗?
  3. 但所有这些都取决于您要发送的邮件数量以及收件人的数量之间的差异。