Daily weather notification through Pushover

Good day.

I trust that you are well and can help me please.

I’m very new to all of this and still finding my feet.

I want to send a daily weather forecast for the day from HA through Pushover.

My YAML runs successfully however the variables all show “None” and have valid conditions.

Below the YAML followed by the output:
YAML:
“action: notify.pushover_rain_at_home
metadata: {}
data:
title: Rain At Home
message: >-
The weather throughout the day:
* Condition: {{state_attr(“weather_notifications_condition_day_0”,“Weather Notifications Condition Day 0”)}}
* Minimum Temperature: {{state_attr(“weather_notifications_realfeel_temperature_min_day_0”,“weather_notifications_realfeel_temperature_min_day_0”)}}
* Maximum Temperature: {{state_attr(“weather_notifications_realfeel_temperature_max_day_0”,“weather_notifications_realfeel_temperature_max_day_0”)}}”

Output:
action: notify.pushover_rain_at_home
metadata: {}
data:
title: Rain At Home
message: >-
The weather throughout the day:
* Condition: None
* Minimum Temperature: None
* Maximum Temperature: None

Thank you.
Kind Regards;
Martin Dörfling

https://community.home-assistant.io/t/how-to-help-us-help-you-or-how-to-ask-a-good-question/114371#oneone-format-it-properly-16

Thank you, apologies for posting a not well stated assistance message.

Managed to fix it by accident, kindly see below to wrap up the post.

action: notify.pushover_rain_at_home
metadata: {}
data:
title: Today’s Weather At Home
message: >-
The weather throughout the day:

    *  Condition:  {{states("sensor.weather_notifications_condition_day_0")}}.

    *  Minimum Temperature: 
    {{states("sensor.weather_notifications_realfeel_temperature_min_day_0")}}*C.

    *  Maximum Temperature: 
    {{states("sensor.weather_notifications_realfeel_temperature_max_day_0",)}}*C.

    *  Air Quality: 
    {{states("sensor.weather_notifications_air_quality_day_0")}}.

    *  Sunny Hours: 
    {{states("sensor.weather_notifications_hours_of_sun_day_0")}} hours.

    *  Thunderstorm probability: 
    {{states("sensor.weather_notifications_thunderstorm_probability_day_0")}}%.

    *  UV Index:  {{states("sensor.weather_notifications_uv_index_day_0")}}.

    *  Wind gust: 
    {{states("sensor.weather_notifications_wind_speed_day_0")}}km/h.

This is still not formatted correctly. Spacing is important in YAML. Please help us help you in future.