mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
Alerting: Change text on cloud AM email addresses for contact points (#68143)
This commit is contained in:
parent
26d33d8fd4
commit
e1ff434917
@ -255,7 +255,7 @@ func GetAvailableNotifiers() []*NotifierPlugin {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
Label: "Addresses",
|
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,
|
Element: ElementTypeTextArea,
|
||||||
PropertyName: "addresses",
|
PropertyName: "addresses",
|
||||||
Required: true,
|
Required: true,
|
||||||
|
@ -77,7 +77,12 @@ export const cloudNotifierTypes: NotifierDTO[] = [
|
|||||||
info: '',
|
info: '',
|
||||||
heading: 'Email settings',
|
heading: 'Email settings',
|
||||||
options: [
|
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('from', 'From', 'The sender address.'),
|
||||||
option('smarthost', 'SMTP host', 'The SMTP host through which emails are sent.'),
|
option('smarthost', 'SMTP host', 'The SMTP host through which emails are sent.'),
|
||||||
option('hello', 'Hello', 'The hostname to identify to the SMTP server.'),
|
option('hello', 'Hello', 'The hostname to identify to the SMTP server.'),
|
||||||
|
Loading…
Reference in New Issue
Block a user