I have a very simple Umbraco site. I can send "forgot password"-email when running the site from localhost, but when I deploy it to my azure app service I get the error message
"Request password reset failed for email forgetful_backoffice_user@gmail.com"
this is from my web.config and umbracoSettings.config.
Im also interested in how to diagnose this problem. I have looked in \app_data\logs, but I cant see any error message that is related to sending mail. In the Umbraco-db, the table UmbracoLog has merely 30 rows, non-related.
<mailSettings>
<smtp deliveryMethod="Network" from="xxxxxx@gmail.com">
<network defaultCredentials="false" host="smtp.gmail.com" userName="xxxxxx@gmail.com" password="yyyyyyyyy" port="587" enableSsl="true" />
</smtp>
</mailSettings>
<notifications>
<!-- the email that should be used as from mail when umbraco sends a notification -->
<email>xxxxxx@gmail.com</email>
</notifications>
EDIT: I have activated "less secure apps" on my gmail account and also followed this link from my gmail account. No difference Umbraco health check says ok and that it has sent a mail to the email-address, but none was received.
EDIT2: I got it working with an office365-account (instead of gmail). But Id still like to know why it doesnt work and how to diagnose similar problems