Hi, I would like to send email notification, when some value of sensor rise about level. Now I am trying just to send that value with email to me. My code looks like this:
script.yaml
test_notification:
alias: 'Test Gmail Notification'
sequence:
- service: notify.alert_jarvis
data:
message: Temperature regulator measured value is: {{ states.sensor.measure_regulatortemp_modul }}
Recieved email text:
Temperature regulator measured value is: <template state sensor.measure_regulatortemp_modul=24.25; unit_of_measurement=°C, friendly_name=measure regulatorTemp_modul @ 2019-04-11T14:21:41.549855+02:00>
How can I just recieved “value” of sensor not this whole text??