0

我正在尝试通过我的 gmail 帐户使用 JavaMail API 作为电子邮件发送,但我收到了 javax.mail.MessagingException 异常

编码 :

  public static Result sendMail() {

      Map < String, String[] > values = request().body().asFormUrlEncoded();

      String toAddresses = values.get("toaddrs")[0];
      String subject = values.get("subject")[0];
      String body = values.get("body")[0];

      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 session = Session.getDefaultInstance(props, new javax.mail.Authenticator() {
          protected PasswordAuthentication getPasswordAuthentication() {
              return new PasswordAuthentication("samplemail@gmail.com", "samplepass");
          }
      });

      try {

          Message message = new MimeMessage(session);
          message.setFrom(new InternetAddress("samplemail@gmail.com"));
          message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(toAddresses));
          message.setSubject(subject);
          message.setText(body);

          Transport.send(message);
          return ok("sent");

      } catch (MessagingException e) {
          return ok("Error in sending email");
      }


  }

在调试时,我在服务类中结束 服务等级

引发异常:javax.mail.MessagingException: Host, username, and password must be specified.

4

3 回答 3

1

纠正这些常见的错误。如果它仍然不起作用,请发布调试输出

于 2013-05-10T18:26:08.943 回答
0

我用来发送到 gmail 的代码(并且有效)的唯一区别是:

    Properties props = System.getProperties();// get system props?
    props.put("mail.smtp.socketFactory.fallback", "false"); 

和 msg.setSentDate(new Date());

您还可以添加: session.setDebug(true); 这可能会提供更多线索。

在哪一行抛出异常?

于 2013-05-10T13:27:44.447 回答
0

感谢您的回答。这个问题原来是一个奇怪的问题,至少对于像我这样的新手来说。简单地说,我的类路径中有 exjello 库。他们在搞乱我的 JavaMail API。一旦我创建了一个新项目并在那里复制了我的代码,它就可以正常工作了。只是为了检查,我将 exjello jar 复制到了我的新项目的类路径中,但它停止了工作。

从外行的角度来看,即使我什至没有将包导入我的班级,让 jar 文件干扰我的执行似乎也不是一个好主意。

于 2013-05-15T09:03:40.580 回答