The short answer is, as stated above (+1'd btw), to use the SmtpClient class.
However, it's dangerous to go emailing passwords around. As a rule of thumb:
- Don't send passwords in clear text
- Don't store passwords in clear text
When storing a password (if you don't have some framework that does all this for you)
- Create a salt
- Append the salt to the password
- Hash the resulting string
- Store the salt and resulting hash
- Discard the password
- When authenticating, add the salt to
the newly provided password, hash the
resulting string, and compare to your
stored hash
If a user has forgotten their password, send that user an email containing a one-time use, time-sensitive (expires in 1 hour?), unique-link to reset his/her password. It's also a good practice to require the user to manually provide his/her account name or other identifying criteria on the password-reset form.