Re:
!> How can I send an e-mail by PasswordRecovery class
Please compare your code to the sample code provided at :
http://msdn2.microsoft.com/en-us/library/ms178335(vs.80).aspx
http://msdn2.microsoft.com/en-us/lib...drecovery.aspx
Notice the web.config entries which you are, apparently, missing.
Juan T. Llibre, asp.net MVP
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en espaņol :
http://asp.net.do/foros/
======================================
"Husam" <(E-Mail Removed)> wrote in message
news:EA30AF10-4FEE-4C34-9397-(E-Mail Removed)...
> Hi EveryBody:
>
> I use the PasswordRecovery Class to recover the user password, as we know
> there is
> some setting that must be done to config the mail, I but the following code
> into my web config file :
>
> <system.net>
> <mailSettings>
> <smtp from ="(E-Mail Removed)">
> <network host="127.0.0.1" port="25" />
> </smtp>
> </mailSettings>
> </system.net>
>
> also the code that I use it in to my application is as followe:
>
> imports System.net.mail
>
> Dim smtpserver As New SmtpClient
> smtpserver.Host = "127.0.0.1"
> Dim MyMail As MailMessage = New MailMessage()
> MyMail.BodyEncoding = Encoding.UTF8
> MyMail.IsBodyHtml = True
>
> MyMail.Body = "Dear User your password is: "
> smtpserver.Send("(E-Mail Removed)", "(E-Mail Removed)", "Password
> Recovery", MyMail.Body)
>
> But I still did not recive the messge.
>
> Can Some body tell me if there is a problem in my code or any redirection
> will be appreciated
>
> regrad's
>
> husam