Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.17 KB

File metadata and controls

24 lines (17 loc) · 1.17 KB

Azure Email (OrchardCore.Email.Azure)

This module provides an Email provider for sending emails through the Azure Communication Services Email.

Azure Email Settings

Enabling this module will introduce a new tab labeled 'Azure' within the email settings, allowing you to configure the service. To access these settings, navigate to Configuration > Settings > Email and click on the Azure tab. The following are the available settings

Setting Description
ConnectionString The ACS connection string that will be used to deliver the email.
DefaultSender The email of the sender. This will overrides the DefaultSender setting in OrchardCore.Email.

Azure Email Settings Configuration

You may configure the Azure Email Service using appsettings.json file by adding the following settings

"OrchardCore_Email_Azure": {
    "DefaultSender": "",
    "ConnectionString": "",
    "PreventUIConnectionChange": false // This options will prevent the user to provide custom connection string from the site settings or UI.
}