Now a Day's informing the Clients about the successful updation of data or sending other automated information form your Java Programs, either from your Servlets or from your Applications has become a requirement, more than a feature. Here we show how to use the Java Mail API to send a Mail. To Test Program all you need to have is a SMTP address (Which your ISP Provides).
Before Using this Program, you need to have Javasoft's JavaMail class files which can be downloaded from here http://www.javasoft.com/products/javamail/index.html
You will also need the JavaBeansTM Activation Framework extension or JAF (javax.activation). It is available at http://java.sun.com/beans/glasgow/jaf.html.
import javax.mail.*; import javax.mail.internet.*; import java.util.*; public void postMail( String recipients[ ], String subject, String message , String from) throws MessagingException // Optional : You can also set your custom headers in the Email if you Want // Setting the Subject and Content Type |
To Send a Email, from your Program, just call the above method, With the following parameters,
String to -- Email Address of the Recipient
String subject -- Email Subject
String message -- Content or Body of the Message
String from -- Your (Senders) Email Address
smtp.jcom.net -- Replace this with your ISP's SMTP address.
That's it, you are all set to send a Email.
0 comments:
Post a Comment