Added pushover image attachment functionality (#9702)

Added documentation for a new feature enabling image attachments to be sent in pushover notifications.
This commit is contained in:
kreegahbundolo 2019-07-31 10:45:11 +02:00 committed by Franck Nijhof
parent 7359d8f7fb
commit e9fbc61eac

View File

@ -53,10 +53,13 @@ Example Automation:
url: "https://www.home-assistant.io/"
sound: pianobar
priority: 0
attachment: "http://example.com/image.png"
```
Component specific values in the nested `data` section are optional.
Image attachments can be added using the `attachment` parameter, which can either be a valid URL for an image (ex: `http://example.com/image.png`) or a local file reference (ex: `/tmp/image.png`).
To use notifications, please see the [getting started with automation page](/getting-started/automation/).
When sending a notification, optional parameters can also be set as per the pushover [API documentation](https://pushover.net/api).
@ -80,6 +83,7 @@ alexa:
sound: falling
device: pixel
url: "https://www.home-assistant.io/"
attachment: "/tmp/image.png"
```
{% endraw %}