[v10.0.x] Alerting: Change text on cloud AM email addresses for contact points (#68180)

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

(cherry picked from commit e1ff434917)

Co-authored-by: Virginia Cepeda <virginia.cepeda@grafana.com>
This commit is contained in:
Grot (@grafanabot)
2023-06-08 09:43:02 +00:00
committed by GitHub
co-authored by Virginia Cepeda
parent 665430bafb
commit 0cdb85af0b
2 changed files with 7 additions and 2 deletions
@@ -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,
@@ -77,7 +77,12 @@ export const cloudNotifierTypes: Array<NotifierDTO<CloudNotifierType>> = [
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.'),