2015-10-24 71 views
2

我已經編寫了一個用於從java(javamail/jaf)發送簡單郵件的代碼。在我運行該程序後,我收到了一封來自Google的電子郵件,表示我的帳戶正在被不安全的設備/應用程序訪問。然後,我必須更改我的Gmail帳戶的設置,以允許登錄「不太安全的應用程序」選項。然後我收到了我的電子郵件。需要使Javamail更加安全地進行Gmail身份驗證

我需要發送電子郵件而不更改選項允許我的帳戶中的「安全性較低的應用程序」選項。請幫忙。

我的代碼是:

import java.util.Properties; 
import javax.mail.Message; 
import javax.mail.MessagingException; 
import javax.mail.PasswordAuthentication; 
import javax.mail.Session; 
import javax.mail.Transport; 
import javax.mail.internet.InternetAddress; 
import javax.mail.internet.MimeMessage; 

public class SendMailSSL { 
    public static void main(String[] args) { 
     Properties props = new Properties(); 
     props.put("mail.smtp.host", "smtp.gmail.com"); 
     props.put("mail.smtp.socketFactory.port", "465"); 
     props.put("mail.smtp.socketFactory.class", 
       "javax.net.ssl.SSLSocketFactory"); 
     props.put("mail.smtp.auth", "true"); 
     props.put("mail.smtp.port", "465"); 

     Session session = Session.getDefaultInstance(props, 
      new javax.mail.Authenticator() { 
       protected PasswordAuthentication getPasswordAuthentication() { 
        return new PasswordAuthentication("*****@gmail.com","*******"); 
       } 
      }); 

     try { 

      Message message = new MimeMessage(session); 
      message.setFrom(new InternetAddress("*****@gmail.com")); 
      message.setRecipients(Message.RecipientType.TO, 
        InternetAddress.parse("*****@gmail.com")); 
      message.setSubject("Testing Subject"); 
      message.setText("Dear User," + 
        "\n\n No spam to my email, please!"); 

      Transport.send(message); 

      System.out.println("Done"); 

     } catch (MessagingException e) { 
      throw new RuntimeException(e); 
     } 
    } 
} 

回答

2

避免這種情況的Gmail的唯一方法是使用OAuth 2.0認證。你可以通過這個鏈接瞭解它。 https://developers.google.com/gmail/xoauth2_protocol?hl=en

+2

我不知道爲什麼我的答案只有一個鏈接被刪除,但只有一個鏈接的這個答案沒有被刪除。無論如何,您可以在JavaMail [here](https://java.net/projects/javamail/pages/OAuth2)中找到更多關於使用OAuth2的信息。 –

相關問題