Posts Tagged ‘Java Mail’

Sending Emails in Java using GMail ID

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 ...
Copyright © 2012 ViralPatel.net. All rights reserved.