mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-30 06:46:49 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
642 B
642 B
title, description, ha_category
title | description | ha_category |
---|---|---|
Send a reminder | Send a reminder | Automation Examples |
Always forget to eat lunch? Let Home Assistant send you a reminder.
Add a notify platform of your choice.
notify:
- platform: xmpp
name: jabber
sender: YOUR_JID
password: YOUR_JABBER_ACCOUNT_PASSWORD
recipient: YOUR_RECIPIENT
and automation part to your configuration.yaml
file.
automation:
- alias: Send message at a given time
trigger:
platform: time
at: '12:15:00'
action:
service: notify.jabber
data:
message: 'Time for lunch'