Mail notification plugin for nci.
npm install nci-mail-notificationTo enable add this plugin to the plugins section at server config, set
parameters for e-mail account at notify.mail e.g. for gmail:
{
    "plugins": [
        "nci-mail-notification"
    ],
    "notify": {
        "mail": {
            "host": "smtp.gmail.com",
            "port": 587,
            "auth": {
                "user": "[email protected]",
                "pass": "pass"
            }
        }
    }
....
}after that you can set mail notification at project config e.g.
    "notify": {
        "on": [
            "change"
        ],
        "to": {
            "mail": [
                "[email protected]"
            ]
        }
    },