Java unknown cause for infinite loop
Advertisements I have a code result that I cannot explain in Java 11 code that sends an email. I am using the javax mail package: import javax.mail.Message; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; Here is the code: Properties props = System.getProperties(); props.put("mail.smtp.host", smtpHost); Session session = Session.getInstance(props); int nMaxTries = 5; int nTries… Read More Java unknown cause for infinite loop