Click to See Complete Forum and Search --> : similar to the mailto concept
Lithium-Zi
09-20-2007, 03:42 AM
Language C#: i want to write a section into my web app where if the person logging in has lost/forgotten their pw, they enter the email addy they registered with and click the button which posts a mail back to me (the administrator) so i can provide them with their login details via their registered email addy. How do i do this?
ray326
09-21-2007, 05:07 PM
Why put yourself in the stream? Write a form handler that takes their login ID, looks up their info in the user table (there IS a user table, right?) and uses SMTP or CDONTS or whatever the MS thing is now to send them an email with the info. Unless it's a toy site I don't think I'd send their password in plain text in an email, though.