JavaMail无法正常工作

时间:2012-12-04 09:57:30

标签: javamail

嗨当我在家用电脑上尝试以下代码时,它工作正常。

 Properties props=new Properties();
   props.put("mail.smtp.host", "smtp.gmail.com");
   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 sess=Session.getDefaultInstance(props,
          new javax.mail.Authenticator() {
          protected PasswordAuthentication getPasswordAuthentication(){
          return new PasswordAuthentication("user email ID","password");

          }
          });


  try{
     Message msg=new MimeMessage(sess); 
     msg.setFrom(new InternetAddress("sunnykeerthi@gmail.com"));
     msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse("sunnykeerthi@gmail.com"));
     msg.setSubject("Hi this is mail");
     msg.setText("Hi this is an email sent from java");
     Transport.send(msg);
     JOptionPane.showMessageDialog(null, "message has been sent");

  }
  catch(Exception e)
  {
      JOptionPane.showMessageDialog(null, e);
  }

但是当我在我的办公室电脑上尝试相同时,它会给我一个错误,就像在附加的屏幕上一样。 Java Mail Errror o/p 请帮忙。

1 个答案:

答案 0 :(得分:0)

贵公司是否有可能过滤端口25? 当你将gmail设置为smtp时,你可以从本地桌面客户端(outlook,thunderbird ...)发送邮件吗?

您可以尝试在Java代码中设置公司的smtp服务器吗?