メールの送信中にこのエラーが発生します
java.lang.RuntimeException: javax.mail.SendFailedException: 送信に失敗しました。ネストされた例外: クラス javax.mail.MessagingException: SMTP ホストに接続できませんでした: smtp.gmail.com、ポート: 465、応答: -1
私のコードは次のとおりです。
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.socketFactory.port", "465");
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("email","password");
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("email"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(this.to));
message.setSubject("Testing");
message.setText("Hey, this is the testing email.");
Transport.send(message);
どんな助けでも大歓迎です。
前もって感謝します。