我成功发送了电子邮件,没有错误,但我的收件箱中没有收到任何电子邮件。 为什么会这样?
public static void main(String [] args){
String to = "ryantoy16@yahoo.com";
String from = "hryanmark@gmail.com";
String host = "localhost";
//Get the session object
Properties properties = System.getProperties();
properties.setProperty("mail.smtp.host", host);
Session session = Session.getDefaultInstance(properties);
//compose the message
try{
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
message.setSubject("Ping");
message.setText("Hello, this is example of sending email ");
// Send message
Transport.send(message);
System.out.println("message sent successfully....");
}catch (MessagingException mex) {mex.printStackTrace();}
}
答案 0 :(得分:0)
找出问题的根源。这封信去了垃圾邮件部分。来自现场的电子邮件说它是从hryanmark@gmail.com发送的,但我没有使用Gmail SMTP和相同的地址发送此电子邮件。这就像我使用假身份发送电子邮件。所以我的接收邮件服务器partnerolutions.com.ph认为它是垃圾邮件。