# Notification Email Settings

*If notifications are used, the 'from' email address should be specified and changed from the default value.*

## How to fix this health check

This health check can be fixed by providing configuration on the following path: `Umbraco:CMS:Content:Notifications:Email`.

This configuration can be setup in a configuration source of your choice. This guide shows how to set it up in one of the JSON file sources.

### Updating the JSON configuration

The following JSON needs to be merged into one of your JSON sources. By default the following JSON sources are used: `appSettings.json` and `appSettings.<environment>.json`, e.g. `appSettings.Development.json` or `appSettings.Production.json`.

```json
{
  "Umbraco": {
    "CMS": {
      "Content": {
        "Notifications": {
          "Email": "<email>"
        }
      }
    }
  }
}
```

One example that can be used:

```json
{
  "Umbraco": {
    "CMS": {
      "Content": {
        "Notifications": {
          "Email": "no-reply@domain.com"
        }
      }
    }
  }
}
```
