I am having the registration form.After submitting it goes to another JSP page where it gets the data of that form and stores it in my database.Now i want to send the email to the user id which he has given for the confirmation.I don’t have any idea about it. please get me code for it.
This is my registration form action and submit code.
<form action="signupdata.jsp" method="POST">
<input type="submit" onclick="" value="submit">
This is on signupdata.jsp to save the data in my database.
int i=st.executeUpdate("insert into userdetails(firstname,lastname,email,password,cpassword,category) values('"+fname+"','"+lname+"','"+emal+"','"+pwd+"','"+cpwd+"','"+ctgry+"')");
Now I want to send the email of confirmation to the user’s email ID like most of websites provides.
Write below code in firtPage.jsp
Write below code in signupdata.jsp