在我的应用程序中编写如下代码
public void send_email(String email)
{
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.sendgrid.net");
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("my_username","my_password");
}
});
Message message = new MimeMessage(session);
try {
message.setFrom(new InternetAddress("from@no-spam.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("ramesh@abc.com"));
message.setSubject("Testing Subject");
message.setText("Dear Mail Crawler," +
"\n\n No spam to my email, please!");
Transport.send(message);
System.out.println("Done");
} catch (AddressException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (MessagingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
这是在我的 servlet 类中调用的方法。之后它执行得很好并Done
在控制台上给出了一条消息“”,但我没有在电子邮件收件箱中收到任何电子邮件。
如果我运行与 java 应用程序相同的代码,它可以正常工作并收到一封电子邮件。
但是当我在谷歌网络服务器上运行它时它不起作用..还有一件事,我从 lib 中删除了 javaee.jar 文件和 mail.jar 文件,但它仍然没有给出任何错误..
各位大侠给点建议吧。。。。