TTS and standard notification to mobile app

The docs seem to me to indicate this is not possible (at least simply).

I’m trying to create an alert that had a standard notification AND speaks a message as well. Do I need to create a duplicate alert to accomplish this?

This is my current alert which sends and clears the notification exactly as desired less the TTS part. I’m pretty sure that I’ve got that part written wrong even if you can combine them, but I was just trying things at this point.

alert:
  hot_tub:
    name: Hot Tub Cover Alert
    done_message: clear_notification
    entity_id: input_boolean.ht_timer_is_complete_send_notification
    state: "on"
    repeat: 1
    notifiers:
      - mobile_app_arbutus
      #- persistent_notification
      - 'mobile_app_pixel_8'
    title: "Hot Tub Timer Complete"
    message: "Please close the cover"
    data:
      actions:
        - action: "clear_hot_tub_notification"
          title: "Clear Notification"
      tag: hot-tub
      color: "red"
      importance: high
      channel: "house_alerts"
      #icon_url: "mdi:hot-tub"
      visibility: public
      message: "TTS"
      data:
        tts_text: "The Hot tub timer is complete. Please close the hot tub cover"
        media_stream: "alarm_stream"
      notification_icon: "mdi:hot-tub"

Here is a link to my Door-open alert. I have it sending voice messages to Alexa, sending messages to the Home Assistant notifications page, and sending messages to my cell phones. I am working on getting voice messages to my cells. I will be doing an updated post as soon as I work out the last part. Let me know if there is anything I can help with.

David.

yes, existing request https://github.com/home-assistant/android/issues/3947

Thank you!