Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2017
1,197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. mail.setFrom("teste.email.send@gmail.com", "Teste");
  2. mail.setSubject("E-mail exemplo");
  3. mail.setMsg("E-mail de exemplo");
  4. mail.setSSLOnConnect(true);
  5. mail.setAuthentication("teste.email.send@gmail.com", "********");
  6. mail.setHostName("smtp.gmail.com");
  7.  
  8. mail.addTo("meu.email@gmail.com", "Lucas Souza");
  9. mail.setSmtpPort(587);
  10. mail.send();
  11.  
  12. } catch (EmailException ex) {
  13. Logger.getLogger(Email.class.getName()).log(Level.SEVERE, null, ex);
  14. }
  15.  
  16. org.apache.commons.mail.EmailException: Sending the email to the following server failed : smtp.gmail.com:465
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement