How to include variable data in notification

I’m new and trying to learn. I want to send a notification that includes data from my weather station. Here’s what I have right now:

domain: mobile_app
type: notify
message: %sensor.brad_s_house_dew_point%
title: Dew Point

But it just sends a notification with the sensor variable name. What am I doing wrong? I tried it without the % as well. Thanks!

Try replacing:

%sensor.brad_s_house_dew_point%

With:

{{ sensor.brad_s_house_dew_point }}
message: "{{ states('sensor.brad_s_house_dew_point') }}"
1 Like

Thank you so much! This got it and I understand how it works now.