Connecting Tech Pros Worldwide Forums | Help | Site Map

password recovery

=?Utf-8?B?SHVzYW0=?=
Guest
 
Posts: n/a
#1: Jun 27 '08
Hi :

I have the following code that I used it in password recovery:
Dim mail As New MailMessage()
mail.From = New MailAddress("husam_108@yahoo.com")
mail.To.Add("husamalahmadi@hotmail.com")
mail.Subject = "The password"
mail.Body = "you password is: " + password
Dim smtp As New SmtpClient("127.0.0.1", 25)
smtp.Send(mail)
me.response.write("the password has been sent to your e-mail")

and the message appear to me and tell me the password has been sent.

but when I go to my e-mail there is no message.

can some body enlight me about this issue ?

any help will be appreciated

regard's

Husam

Mark Rae [MVP]
Guest
 
Posts: n/a
#2: Jun 27 '08

re: password recovery


"Husam" <Husam@discussions.microsoft.comwrote in message
news:C3380A30-5757-466D-8D42-50E988B528C8@microsoft.com...
Quote:
Can some body enlighten me about this issue ?
http://forums.asp.net/t/1208525.aspx


--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Closed Thread