Update sendgrid notify component configuration (#7569)

This commit is contained in:
Klaas Schoute 2018-11-18 09:09:16 +01:00 committed by Fabian Affolter
parent 610efa0f50
commit 5b1b1fc40a

View File

@ -25,11 +25,24 @@ notify:
recipient: YOUR_RECIPIENT recipient: YOUR_RECIPIENT
``` ```
Configuration variables: {% configuration %}
name:
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
- **api_key** (*Required*): SendGrid API key - https://app.sendgrid.com/settings/api_keys required: false
- **sender** (*Required*): E-mail address of the sender. default: notify
- **recipient** (*Required*): Recipient of the notification. type: string
api_key:
description: SendGrid API key - https://app.sendgrid.com/settings/api_keys
required: true
type: string
sender:
description: E-mail address of the sender.
required: true
type: string
recipient:
description: Recipient of the notification.
required: true
type: string
{% endconfiguration %}
To use notifications, please see the [getting started with automation page](/getting-started/automation/). To use notifications, please see the [getting started with automation page](/getting-started/automation/).