Hi! I'm trying to use the Recover Password Feature of the ASP.NET (c#) I have the ff configurations:
web configurations
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="account@gmail.com">
<network host="smtp.gmail.com" userName="account@gmail.com" password="password" port="587" enableSsl="true" />
</smtp>
</mailSettings>
</system.net>
When I run the application and try to put username on the textbox of the recover password, the page loads and this error appears:
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond xx.xx.xx.xx:587
Can anyone help me what's the problem? and how can I solve it?