Ajax для Java разработчиков: Часть 1. Строим динамические приложения на языке Java
http://www.internet-technologies.ru/articles/article_1058.html
http://forums.sun.com/thread.jspa?threadID=5351826
SimpleEmail email = new SimpleEmail();
email.setHostName("gmail.com");
email.addTo("xx@gmail.com", "John Doe");
email.setFrom("xx@gmail.com", "Me");
email.setSubject("Test message");
email.setMsg("This is a simple test of commons-email");
email.send();
Комментариев нет:
Отправить комментарий