Alerting: Change text on cloud AM email addresses for contact points (#68143)

This commit is contained in:
Virginia Cepeda 2023-05-10 05:44:17 -03:00 committed by GitHub
parent 26d33d8fd4
commit e1ff434917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -255,7 +255,7 @@ func GetAvailableNotifiers() []*NotifierPlugin {
},
{
Label: "Addresses",
Description: "You can enter multiple email addresses using a \";\" separator",
Description: "You can enter multiple email addresses using a \";\", \"\\n\" or \",\" separator",
Element: ElementTypeTextArea,
PropertyName: "addresses",
Required: true,

View File

@ -77,7 +77,12 @@ export const cloudNotifierTypes: NotifierDTO[] = [
info: '',
heading: 'Email settings',
options: [
option('to', 'To', 'The email address to send notifications to.', { required: true }),
option(
'to',
'To',
'The email address to send notifications to. You can enter multiple addresses using a "," separator',
{ required: true }
),
option('from', 'From', 'The sender address.'),
option('smarthost', 'SMTP host', 'The SMTP host through which emails are sent.'),
option('hello', 'Hello', 'The hostname to identify to the SMTP server.'),