Notification for multiple sensors, put sensor name in message automatically

I would like to set up 1 notification with multiple triggers. I want this 1 notification to alert me telling me which notification triggered it. My code is as follows:


- id: '1673379772305'
  alias: Over 90F Noticiation
  description: ''
  trigger:
  - platform: numeric_state
    entity_id: sensor.flower_1_temp_average
    for:
      hours: 0
      minutes: 1
      seconds: 0
    above: '89'
  - platform: numeric_state
    entity_id: sensor.flower_2_temp_average
    for:
      hours: 0
      minutes: 1
      seconds: 0
    above: '89'
  - platform: numeric_state
    entity_id: sensor.flower_3_temp_average
    for:
      hours: 0
      minutes: 1
      seconds: 0
    above: '89'
  condition: []
  action:
  - service: notify.gmail
    data:
      message: '(I want this to tell me which sensor is over 90 degrees F. How can I achieve this?) '
  mode: single

sensor names would be sensor.flower_1_temp_average and so on

- id: '1673379772305'
  alias: Over 90F Noticiation
  description: ''
  trigger:
  - platform: numeric_state
    entity_id: 
      - sensor.flower_1_temp_average
      - sensor.flower_2_temp_average
      - sensor.flower_3_temp_average
    for:
      hours: 0
      minutes: 1
      seconds: 0
    above: '89'
  condition: []
  action:
  - service: notify.gmail
    data:
      message: >
        {{ trigger.entity_id }} is above 90F
  mode: queued

Or for the friendly name instead of the entity id:

      message: >
        {{ trigger.to_state.name }} is above 90F

Thank you. I will try this. Is there a place I can go to see all the code tags so I could have figured this out?

The basic variables that are available for each trigger type can be found in the Automation Trigger Variables Docs.

You will also want to take a look at the State Object Docs since that data is available for a number of different trigger types.