Java/Email/Jars Setup

Материал из Java эксперт
Версия от 06:17, 1 июня 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Java Mail Development Environment

import java.util.Properties;
import javax.mail.Address;
import javax.mail.Message;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class MainClass {
  public static void main(String[] args) throws Exception {
    Properties props = new Properties();
    props.put("mail.host", "mail.cloud9.net");
    Session mailConnection = Session.getInstance(props, null);
    Message msg = new MimeMessage(mailConnection);
    Address a = new InternetAddress("a@a.ru", "A a");
    Address b = new InternetAddress("fake@jexp.ru");
    msg.setContent("Mail contect", "text/plain");
    msg.setFrom(a);
    msg.setRecipient(Message.RecipientType.TO, b);
    msg.setSubject("subject");
    Transport.send(msg);
  }
}