我正在尝试开发一个发送邮件的应用程序。它运作良好,但如果我从 Gmail 向 hotmail 发送电子邮件,它会被视为垃圾邮件。这是一段描述smtp服务器参数的代码
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", "smtp.gmail.com"); // pour hotmail -> smtp.live.com
props.put("mail.smtp.port", "587");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(emailFrom, password);
}
});
请问有什么想法吗?谢谢你。