Linda Liu
Linda Liu

Reputation: 31

Umbraco CMS in Azure unable to send email to new user

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?

Upvotes: 3

Views: 845

Answers (1)

Alex
Alex

Reputation: 2915

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

<system.net>
    <mailSettings>
    <smtp from="[email protected]">
        <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.

Upvotes: 1

Related Questions