- Monday, August 3, 2009, 18:00
- Java
- 3,290 views
Thought of sharing following code with you all. It is a small code snippet that uses SMTP in Java to login into GMail and send email using ones GMail account.
String host = "smtp.gmail.com";
String from = "username";
String pass = "password";
Properties props = System.getProperties();
props.put("mail.smtp.starttls.enable", "true"); // added this line
...
Full story
- Wednesday, May 13, 2009, 16:24
- Featured, Java, Tutorial
- 19,102 views
Following are few very useful Java code snippets for Java developers. Few of them are written by me and few are taken from other code reference. Feel free to comment about the code and also add your code snippet.
1. Converting Strings to int and int to String
String a = String.valueOf(2); //integer to numeric string
int ...
Full story