i need the code in struts2 for forgot pass word.i have a jsp where the user can enter the username.then i will get dat user name in action class.and with that user name i will select password and email from database and i dont know the reat code that how to send email.
my jsp is:
my action class is:
public class UserFormControlAction extends ActionSupport
{
private String fusername;
public String getFusername() {
return fusername;
}
public void setFusername(String fusername) {
this.fusername =fusername;
}
}
That is a very broad question. Can give you hint and some reference
Hint : you can use javaMail API
reference : How to send e-mail through java , thats some tutorial and you should be able to get past your problem.