Showing posts with label mail. Show all posts
Showing posts with label mail. Show all posts

Sunday, February 26, 2012

comment_icon 5 Sending E-Mail via G-mail using Java

package mymail; import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.AddressException; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class Mymail { public Mymail(){ super(); } /*REMOVE THIS TO TEST AS JAVA APPLICATION public static void main(String args[]) throws AddressException, MessagingException{ Mymail m =new Mymail(); m.GmailSend("coolasr@gmail.com", "hello", "hello"); }*/ public boolean GmailSend (String to,String subject,String messageText) throws...