Hi there,
I’m trying to send an image via pushbullet from an URL that’s retrieved by a sensor:
- service: notify.rudolf
data:
title: '{{states("sensor.current_artist")}} op de radio'
message: '{{states("sensor.current_title")}}'
data_template:
file_url: >
{{states('sensor.current_image')}}
Doesn’t work. (without error)
- service: notify.rudolf
data:
title: '{{states("sensor.current_artist")}} op de radio'
message: '{{states("sensor.current_title")}}'
data:
file_url: '{{states('sensor.current_image')}}'
Doesn’t work either
last one does work when using a regular URL.
Any suggestions?