Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Please see the screenshot below for an example. Even if I input an existing valid email address it does not work. Does anybody have a clue why such a basic feature does not work?
Thanks a lot.
Hi Fabian
Do you have working smtp server added to your web.config? Are there any errors on log?
Thanks,
Alex
Hi Alex,
Yes I have and it is configured as follows:
<system.net> <mailSettings> <smtp> <network host="smtp.sendgrid.net" userName="[MyUsernameHere]" password="[MyPasswordHere]" port="587" defaultCredentials="false" enableSsl="true" /> </smtp> </mailSettings> </system.net>
I have tested the forgot password functionality on our testing environment and I have got the following error:
Do you have a clue what a solution might be please?
Thanks a lot
From the official documentation of sendgrid
Your web.config is missing a from:
<system.net> <mailSettings> <smtp from="[email protected]"> <network host="smtp.sendgrid.net" password="password" userName="username" port="587" /> </smtp> </mailSettings> </system.net>
@kevainc Thanks for that fix
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco v7.5.1 forgot password functionality does not work
Please see the screenshot below for an example. Even if I input an existing valid email address it does not work. Does anybody have a clue why such a basic feature does not work?
Thanks a lot.
Hi Fabian
Do you have working smtp server added to your web.config? Are there any errors on log?
Thanks,
Alex
Hi Alex,
Yes I have and it is configured as follows:
I have tested the forgot password functionality on our testing environment and I have got the following error:
Do you have a clue what a solution might be please?
Thanks a lot
From the official documentation of sendgrid
Your web.config is missing a from:
@kevainc Thanks for that fix
is working on a reply...