-
|
Hello, //yaml
Next, you reference the defined group name "all_ios_devices" in the actual notification: //yaml If I then run the YAML checker from Developer Tools, there are no errors. I then restart HA, but after awhile I will get this error in Settings: The automation "📬 LoRa MailBox Sensor Notification" (automation.lora_mailbox_sensor_notification) has an unknown action: notify.mobile_app_all_ios_devices. This error prevents the automation from running correctly. Maybe this action is no longer available, or perhaps a typo caused it. To fix this error, edit the automation and remove this action. Select Submit below to confirm you have fixed this automation. I have re-written all of this so many times, I am sure I am overlooking something simple. If anyone would point out my error to me, I would really appreciate it! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi APT256, You can definitely send notifications to a group in Home Assistant by defining a notification group in your configuration.yaml or notify.yaml file, then using that group’s notify service in your automation. The README includes a detailed example for single-device notifications using the mailbox sensor. To extend this for group notifications, you would create a group notification target in Home Assistant, for example: notify:
- platform: group
name: family_phones
services:
- service: mobile_app_phone1
- service: mobile_app_phone2
- service: mobile_app_tabletThen, in your mailbox notification automation’s action, instead of notifying a single device like This way, the notification will be sent to all devices in the group simultaneously. For reference, the README shows a sample single-device notification automation here: action:
- service: notify.mobile_app_doogee_v20pro
data:
message: Mailbox is Full !
title: New Mail!
data:
# notification details...Switch this to your group notify service and it will notify all devices. If you need help setting up notification groups in Home Assistant, the official HA documentation is a good resource: https://www.home-assistant.io/integrations/notify/#group Also, the README’s Home Assistant Configuration section may assist you in understanding how the current notification system works using MQTT and mobile app notifications. If you plan to adjust this, just ensure your automation’s action calls the group notify service you configure. Hope this helps! ✅ If this answer helped, please close the discussion. |
Beta Was this translation helpful? Give feedback.
Good news, I am pretty sure I figured out my problem. The issue revolved around device names:
Key points:
• Spaces become underscores (Jon's iPad → jons_ipad).
• Apostrophes and most punctuation are removed (Jon's → jons).
• You do not put quotes or the literal space inside the service: line; you use the exact service name from Developer Tools → Services (what appears after notify.).