I am new to ASP.Net and have been going through the book trying to figure out why my email does not include the new password after a user has requested a reset. I am using the PasswordRecovery control, with hashed passwords. I am assuming the control is suppose to send the new password automatically?? I get it to change the password and send the email, but does not include the new password. I think the web config is set up properly
Code:
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="no_reply@kresa.org">
<network defaultCredentials="true" host= "exchange.Kresa.org"
password="" userName="" />
</smtp>
</mailSettings>
</system.net>
Any help would be appreciated.