where we had this before:
service: notify.filed_notifications
data:
message: >
{% set message = trigger.event.data.service_data.message %}
{% set service = trigger.event.data.service %}
{{now().strftime('%d %b: %X')}} - {{service}}: {{message}}
we need to replace it with this now:
service: notify.send_message
target:
entity_id: notify.filed_notifications
data:
message: >
{% set message = trigger.event.data.service_data.message %}
{% set service = trigger.event.data.service %}
{{now().strftime('%d %b: %X')}} - {{service}}: {{message}}
thats all ![]()
admit it would have helped if this was in the documentation.