通过java遇到错误发送邮件

时间:2021-09-10 18:11:32

now a days i'm facing quite strange problem & that is during send mails this is strange because when i'm testing my application on localhost everything goes perfect but as i deployed my application its enable to send mails .

现在有一天我面临着非常奇怪的问题,那就是在发送邮件期间这很奇怪,因为当我在localhost上测试我的应用程序时,一切都很完美,但是当我部署我的应用程序时,它能够发送邮件。

you guys can check it as well http://www.mkjit-solutions.com/app/jsf/Contactus.xhtml

你们也可以查看它http://www.mkjit-solutions.com/app/jsf/Contactus.xhtml

i'm seeing this exception:

我看到了这个例外:

javax.mail.SendFailedException: Sending failed; nested exception is:
class javax.mail.MessagingException: 530 5.7.0 Must issue a STARTTLS command first. yv6sm13782372pac.29 - gsmtp 

the code which i used is

我使用的代码是

props.put("mail.smtp.host", "smtp.gmail.com"); 
props.put("mail.smtp.port", "587"); 
props.put("mail.debug", "true"); 
props.put("mail.smtp.auth", "true"); 
props.put("mail.smtp.starttls.enable", "true");


Session session = Session.getInstance(props,
          new javax.mail.Authenticator() 
                  {
            protected PasswordAuthentication getPasswordAuthentication() 
                        {
                return new PasswordAuthentication(userAddress, userPassword);
            }
          });

        customMsg += "3 - ";

        try {

                        customMsg += "3.1 - ";
            Message message = new MimeMessage(session);

                        customMsg += "3.2 - ";
            message.setFrom(new InternetAddress(userAddress));

                        customMsg += "3.3 -  ";
                        message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse(toAddress));

                        customMsg += "3.4 -  ";
                        message.setSubject(subject);

                        customMsg += "3.5 -  ";
                        message.setText(msg);

                        customMsg += "3.6 -  ";
 Transport transport = session.getTransport("smtp");
            Transport.send(message);

                  customMsg += "4 -  ";


                    System.out.println("ua"+userAddress);
                    System.out.println(""+userPassword);
                    System.out.println("ta"+toAddress);




                  System.out.println("Done");
                        flag = true;
                        customMsg += " [Value of Flag "+flag+"] ";
        } 
                catch (Exception ex) 
                {
                    System.out.println("");
                    ex.printStackTrace();
                    flag = false;
                    customMsg += " [Value of Flag "+flag+"] ";
                    this.e = ex;
                    //throw new RuntimeException(e);

        }

                return flag;

1 个解决方案

#1


Start by fixing these common mistakes.

首先解决这些常见错误。

Gmail sample code is in the JavaMail FAQ.

Gmail示例代码位于JavaMail FAQ中。

If you still can't get it to work, follow these debugging tips, and post the results.

如果仍然无法使其工作,请按照这些调试提示进行操作,并发布结果。

#1


Start by fixing these common mistakes.

首先解决这些常见错误。

Gmail sample code is in the JavaMail FAQ.

Gmail示例代码位于JavaMail FAQ中。

If you still can't get it to work, follow these debugging tips, and post the results.

如果仍然无法使其工作,请按照这些调试提示进行操作,并发布结果。