我在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);
}
但感觉不对。这会扩大吗?
答案 0 :(得分:1)
使用Spring使用Spring Mail Abstraction Layer
答案 1 :(得分:1)
您发送了多少条消息?你有没有测量上面运行多长时间? (我假设主要的时间汇在实际的send()
到MTA。这是否有意义是另一回事)
也许:
但所有这些都取决于您要发送的邮件数量以及收件人的数量之间的差异。