2
It was working normally. Now when I run the program the following error appears:
Could not connect to SMTP host: smtp.gmail.com, port: 465;
This is my way
public void enviaEmail() {
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(
"[email protected]", "1111111");
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("[email protected]"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("[email protected]"));
message.setSubject("Novo Cadastro efetuado na Ouvidoria!!!");
message.setText("Nome do Beneficiário: ," + "" + nome);
System.out.println("Nome email:"+nome);
Transport.send(message);
System.out.println("Done");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
Do you continue with gmail smtp server connectivity? On your cmd, try
telnet smtp.gmail.com 465
, If it fails to open the connection (not showing a whole black screen), it is an indication that you have a network restriction. Also, someone changed the password or smtp settings of the email account?– Bruno Gasparotto
Does not open anything, says that telnet is not recognized as an internal command
– Diego Augusto
Enable telnet on Windows: http://social.technet.microsoft.com/wiki/contents/articles/910.windows-7-enabling-telnet-client.aspx
– Bruno Gasparotto