Switch to full style
Java2 codes,problems ,discussions and solutions are here
Post a reply

email through JAVA program

Fri Oct 24, 2008 11:46 pm

Hi i want to send email using java program.
CAn you help me?



Re: email through JAVA program

Fri Oct 24, 2008 11:52 pm

use Java Mail API. But you also need a SMTP address.

Code:
public class Mail {
String d_email = "from@...",
d_password = "***",
d_host = "smtp.gmail.com",
d_port = "465",
m_to = "to@...",
m_subject = "subject",
m_text = "this is just a test mail";

public Mail() {
Properties props = new Properties();
props.put("mail.smtp.user", d_email);
props.put("mail.smtp.host", d_host);
props.put("mail.smtp.port", d_port);
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.auth", "true");
//props.put("mail.smtp.debug", "true");
props.put("mail.smtp.socketFactory.port", d_port);
props.put("mail.smtp.socketFactory.class", "
javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "false");

SecurityManager security = System.getSecurityManager();

try {
Authenticator auth = new SMTPAuthenticator();
Session session = Session.getInstance(props, auth);
//session.setDebug(true);

MimeMessage msg = new MimeMessage(session);
msg.setText(m_text);
msg.setSubject(m_subject);
msg.setFrom(new InternetAddress(d_email));
msg.addRecipient(Message.RecipientType.TO, new
InternetAddress(m_to));
Transport.send(msg);
} catch (Exception mex) {
mex.printStackTrace();
}
}
private class SMTPAuthenticator extends javax.mail.Authenticator {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(d_email, d_password);
}
}

public static void main(String[] args){
Mail sendmail=new Mail();
}
}


Re: email through JAVA program

Sun Oct 26, 2008 3:32 pm

cool

Post a reply
  Related Posts  to : email through JAVA program
 Java Email Class     -  
 How to create Email from Core Java Code     -  
 java program     -  
 java program     -  
 java chat program.     -  
 Executing a Java Program     -  
 Elements of a Java Program     -  
 compiling and getting of a java program     -  
 Java Chat Program between two computers     -  
 Java Program for communicate PC and Mobile     -  

Topic Tags

Java Email