Click to See Complete Forum and Search --> : [RESOLVED] HTML, JSP, and JavaMail


starheartbeam
09-22-2008, 12:06 PM
I have an html form that I want to take the information entered there and send it using javamail to an email address.

I am new to all of this and not really sure what to do. I know I have to use JSP but I do not know where to go from here.

Please please please help!

Khalid Ali
09-23-2008, 09:59 PM
submit your form to your jsp, in jsp use java mail classes to send email to where ever. First of all download the javamail api implementation.
Then a create project and import these classes into jsp page and use it
Java Mail API (http://java.sun.com/products/javamail/) towards the right side of the page
JavaMail tutorial (kinda old) (http://www.javaworld.com/javaworld/jw-10-2001/jw-1026-javamail.html)

starheartbeam
09-23-2008, 11:27 PM
Thanks!