Weather Forecast via Telegram (or email)

I’ve using both telegram and openweathermap in HA and would like to send a nicely format weather forecast to my telegram account every morning.

Does anyone have a nice example of how to do that or a suggestion on how to build it?

Thank you!

You may be well beyond this and I’m not addressing your weather content in Telegram message. That said the automation code below that I have been using to send a Google map link via Telegram has been working solid for a number of years, might give you some ideas. Good hunting!

  - service: notify.DEEP
    data:
      message: '"Close to : {{ state_attr(''sensor.pulsepoint_sbco'', ''key_location'')
        }} {{ state_attr(''sensor.pulsepoint_sbco'', ''desc_short'') }} {{ state_attr(''sensor.pulsepoint_sbco'',
        ''address'') }} https://www.google.com/maps/search/?api=1&query={{ state_attr(''sensor.pulsepoint_sbco'',
        ''latitude'') }},{{ state_attr(''sensor.pulsepoint_sbco'', ''longitude'')
        }}&zoom=18"

        '

image

Thank you - that will really help me!