3

I create a Umbraco CMS Web App in Azure. I login to the back-office of the Umbraco CMS and try to create new users on there. However, there is no email send to new users ether try create user or invite user.

It may related to SMTP settings in Umbraco, can I add it to the "Application Settings"of the Web App? Anyone try this before?

Djensen
  • 1,337
  • 1
  • 22
  • 32
Linda Liu
  • 31
  • 1
  • Are there any errors in the log files? Smtp settings for umbraco should be added to the web.config in `` – Mark Mar 07 '18 at 08:04

1 Answers1

1

Add mail settings to your web.config like you would other ASP.NET applications:

<system.net>
    <mailSettings>
    <smtp from="noreply@example.com">
        <network host="127.0.0.1" userName="username" password="password" />
    </smtp>
    </mailSettings>
</system.net>

The Umbraco Cloud documentation also pertains to other hosting enviornments such as Azure Web Apps and gives some suggestions for SMTP services.

Alex
  • 2,795
  • 3
  • 21
  • 21