HI,
Working though the companion app docs and trying to send a notification to my android phone with a picture attached.
Using the example i created the following automation:
id: phonenote
alias: Notify Mobile app
trigger:
- entity_id: binary_sensor.postbox_button
platform: state
to: "on"
action:
service: notify.mobile_app_sfs9
data_template:
message: "Something happened at home!"
image: "https://www.home-assistant.io/images/home-assistant-logo.svg"
I’ve tried using data and data_template and neither work. If i remove the image: i get the notification and text. Anyone see what i a missing?