Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. **mailer_transport: smtp
  2. mailer_host: 192.168.192.2
  3. mailer_user: docencia@colsan.edu.mx
  4. mailer_password: ---------
  5. mailer_port:587
  6. mailer_encryption:tls**
  7.  
  8. **String username = "docencia@colsan.edu.mx";
  9. String password = "-----------";
  10.  
  11. Properties props = new Properties();
  12. props.put("mail.smtp.starttls.enable", "true");
  13. props.put("mail.smtp.host", "192.168.192.2");
  14. props.put("mail.smtp.port", "587");**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement