Hi
I implement password recovery tools but when it post recovered password this error was occur :
The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
The webconfig was as follow:
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="info@name.com">
<network host="smtp.gmail.com" userName="Name" enableSsl="true" password="*****" port="587" defaultCredentials="true"/>
</smtp>
</mailSettings>
</system.net>
Any help would be appreciated.
Go to the complete details ...