# You'll need to change the service: line to match your device
alias: Notifications - Send To Mobile
description: ""
trigger:
  - platform: event
    event_type: call_service
    event_data:
      domain: persistent_notification
      service: create
condition: []
action:
  - service: notify.mobile_app_pixel_6a
    data:
      message: "{{trigger.event.data.service_data.message}}"
      title: "{{trigger.event.data.service_data.title}}"
      data:
        tag: "{{trigger.event.data.service_data.notification_id}}"
        channel: "{{trigger.event.data.service_data.notification_id}}"
mode: single

