home-assistant.io/source/_cookbook/send_a_reminder.markdown
2015-12-16 08:19:35 +01:00

777 B

layout, title, description, date, sidebar, comments, sharing, footer
layout title description date sidebar comments sharing footer
page Send a reminder Send a reminder 2015-12-16 08:00 false false true true

{% linkable_title Send a reminder %}

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
      hours: 12
      minutes: 15
      seconds: 0
    action:
      service: notify.jabber
      data:
        message: 'Time for lunch'