How do I send email from my Servlet?
You have two options. The first is to write or find a Simple Mail Transfer Protocol (SMTP) implementation in Java. The second is to use the JavaMail API. You can Download the JavaMail from this site at http://java.sun.com/products/javamail For a sample implementation of sending E-mail using JavaMail please refer to this Article on Sending E-mail using JavaMail.