English 中文(简体)
jsp邮件短版本?
原标题:short version of jsp mail?
  • 时间:2009-09-17 11:00:54
  •  标签:

I m searching for an "one-liner" for mailing within jsp. I just wanna send the values of 5 parameters to the webmasters mail-address. Any ideas for a short solution?

最佳回答

更像6行,但你可以使用commons-email:

import org.apache.commons.mail.SimpleEmail;
...

  SimpleEmail email = new SimpleEmail();
  email.setHostName("mail.myserver.com");
  email.addTo("jdoe@somewhere.org", "John Doe");
  email.setFrom("me@apache.org", "Me");
  email.setSubject("Test message");
  email.setMsg("This is a simple test of commons-email");
  email.send();
问题回答

暂无回答




相关问题
热门标签