Home Javamail Java Mail SMTPClient Example



Java Mail SMTPClient Example
Posted on: December 19, 2008 at 12:00 AM
This Example shows you how to create a SMTP Client using javamail api. A client create new message by using Message subclass.

Java Mail SMTPClient Example

     

This Example shows you how to create a SMTP Client using javamail api. A client create new message by using Message subclass. It sets attributes like recipient address and the subject, and inserts the contentinto the Message object, and inserts the content into  the Message object. Finally, it sends the Message by invoking the Transport.send()  method. The Transport class models the transport agent that routes a message to its destination addresses. This class provides methods that send a message to a list of  recipients. Invoking the Transport.send() method with a Message object identifies the appropriate transport based on its destination addresses.

SMTPClient .java

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*; 

public class SMTPClient { 

  public static void main(String args[]) throws Exception { 

  String host = "192.168.10.205";
 
String from = "test@localhost";
 
String to = "test@localhost";

  // Get system properties
 
Properties properties = System.getProperties(); 

  // Setup mail server
 
properties.setProperty("mail.smtp.host", host); 

  // Get the default Session object.
 
Session session = Session.getDefaultInstance(properties); 

  // Create a default MimeMessage object.
 
MimeMessage message = new MimeMessage(session); 

  // Set the RFC 822 "From" header field using the
 
// value of the InternetAddress.getLocalAddress method.
 
message.setFrom(new InternetAddress(from));

  // Add the given addresses to the specified recipient type.
 
message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

  // Set the "Subject" header field.
 
message.setSubject("hi..!"); 

  // Sets the given String as this part's content,
 
// with a MIME type of "text/plain".
 
message.setText("Hi ......"); 

  // Send message
 
Transport.send(message);
  System.out.println("Message Send.....");
 
}
}


Output:

Message Send.....

Download code

Related Tags for Java Mail SMTPClient Example:
javacapiideclasslistattributesmodelsmtpobjectinsertiomethodsmailclientmethodsediproutesviportcontentnewsetsattributeusingcliintriathismessageidaddressaisubclasssetappcreatelikemodelsshowifieexamplefinaladdjavamailwithsendnattobaseexamroutefinallyssemodeciwssheilitagentdeslsliinmodsubasmntouttrsagestiddjaddressesadbasedclestransportsubjectendaseallagepiepimehowintoobjpropptintxaxampssussaspdelessatkisinsertshallmtmpleaandrtrtssavattssrithshoavbcstatiaphatdestinationendsfinendsinvokingjeidentidentpleplpropprmtpndodsodeono


More Tutorials from this section

Ask Questions?    Discuss: Java Mail SMTPClient Example   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.