Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 25th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. system properties in java
  2. Properties props = System.getProperties();
  3.     props.put("mail.smtp.starttls.enable", "true"); // added this line
  4.     props.put("mail.smtp.host", host);
  5.     props.put("mail.smtp.user", from);
  6.     props.put("mail.smtp.password", pass);
  7.     props.put("mail.smtp.port", "587");
  8.  
  9.  
  10. Session session = Session.getDefaultInstance(props, null);