这是SendMailTLS.java。 这项工作。
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.port", "587");
props.put("mail.smtp.starttls.enable", "true");
//props.put("mail.smtp.ssl.trust", "smtp.gmail.com"); //if avast is enabled
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(recipient));
message.setSubject("TLS");
message.setText("TLS");
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
这是SendMailSSL.java。 这不起作用。
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.port", "465");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(recipient));
message.setSubject("SSL");
message.setText("SSL");
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
两个类都导入:
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;
我不明白代码是做什么的,如果有人可以帮我解释一下..我在SSL文件中做错了吗?如果我使用的是java邮件API,我是否需要担心TLS版本?
答案 0 :(得分:1)
首先修复这些common mistakes。然后解释什么"不起作用"意味着,可能包括JavaMail debug output。
由于您在查找如何自行修复common mistakes时遇到问题,请尝试将代码更改为:
Properties props = new Properties();
props.put("mail.smtp.ssl.enable", "true");
props.put("mail.smtp.host", "smtp.gmail.com");
Session session = Session.getInstance(props, null);
session.setDebug(true);
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(recipient));
message.setSubject("SSL");
message.setText("SSL");
Transport.send(message, username, password);
System.out.println("Done");
} catch (MessagingException e) {
System.out.println(e);
throw new RuntimeException(e);
}
如果这不起作用,请发布debug output(在上面启用)并尝试connection debugging tips并报告结果。
答案 1 :(得分:0)
使用SSL发送电子邮件不适用于我的Java应用程序,TLS工作
你错了。显着的差异是这些:
props.put("mail.smtp.port", "587");
与
props.put("mail.smtp.port", "465");
和
props.put("mail.smtp.starttls.enable", "true");
与
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
这些都与SSL与TLS无关。你看到的是端口587和465之间的区别,以及STARTTLS从初始明文连接开始与初始TLS连接之间的区别。