Email Notifier

The Email Notifier sends emails to a set of configured recipients.

Usage#

When no custom integration is required, the simplest way is to configure an Email Notifier with a list of recipients to notify about any alarms.

Getting Started#

To create a new Email Notifier, navigate to SystemAlarm Handlers and click the New Alarm Handler button. Give a name to the handler and, select the Email handler type.

Configuring an email alarm handler
Configuring an email alarm handler. (Admin UI version: 10.6)

Finally, provide the required configuration properties for the new handler and commit the configuration.

Configuration#

To configure the Email Notifier, an Email Provider needs to be configured, along with a set of recipients that alarm notifications should be sent to.

The Email Notifier is configured under configuration-reference/environments/environment/alarms/alarm-handlers/alarm-handler

ParameterDescription
email-notifier/email-provider/idThe configured Email Provider to use (under facilities)
email-notifier/recipientsA set of email addresses to send alarm notifications to
# A configured Email Notifier shown in the CLI

% show environments environment alarms alarm-handlers alarm-handler email
email-notifier {
    email-provider {
        id smtp1;
    }
    recipients [ john.doe@example.com ];
}

Was this helpful?