There is a problem with Telegram that has bug me for quite some time. I have an automation that send me a notification with photo via Telegram. When the automation is triggered, I only receive the photo without any message in it. It seems the message I set in the automation is ignored. Here is a sample automation…
- alias: 'Air Quality Alert'
trigger:
- platform: state
entity_id: sensor.aqi_status
to: 'Good'
- platform: state
entity_id: sensor.aqi_status
to: 'Moderate'
- platform: state
entity_id: sensor.aqi_status
to: 'Unhealthy for Sensitive Groups'
- platform: state
entity_id: sensor.aqi_status
to: 'Unhealthy'
- platform: state
entity_id: sensor.aqi_status
to: 'Very Unhealthy'
- platform: state
entity_id: sensor.aqi_status
to: 'Hazardous'
action:
service: notify.telegram
data_template:
title: ""
message: "Outdoor air quality is now {{ trigger.to_state.state }} and the AQI is {{states.sensor.waqi_abc.state}}."
data:
photo:
url: http://somedomain/gif/map.gif
Is anyone else facing this issue?