Skip to content

SMTP settings

Configuration

To configure SMTP settings, edit the appsettings.Production.json file and add the following section:

{
    "EmailConfiguration": {
        "From": "<your from email address>",
        "Host": "<your smtp host>",
        "Port": <port number>,
        "Username": "<your username>",
        "Password": "<your password>",
        "EnableSsl": <true/false>,
        "DegreeOfParallelism":" <number of parallel threads>",
        "EmailUser": {                             
            "Email": "<your email address>",
            "Password": "<your password>",
            "Url": "<base url for CxReports instance>",
        }
    }
}