23 Aralık 2019 Pazartesi

JavaMail Session Sınıfı

getInstance metodu
Şöyle yaparız.
Properties props = new Properties();
...
Session session = Session.getInstance(props,
  new javax.mail.Authenticator() {
    protected PasswordAuthentication getPasswordAuthentication() {
      return new PasswordAuthentication(username, password);
    }
});

Hiç yorum yok:

Yorum Gönder