mail
https://www.home-assistant.io/integrations/smtp/
To enable notification by e-mail in your installation, add the following to your configuration.yaml file:
https://bbs.hassbian.com/thread-2759-1-2.html
https://www.home-assistant.io/integrations/smtp/
notify:
- name: send_mail_to_myself
platform: smtp
sender: root@fqdn-hostname
username: root@fqdn-hostname
recipient: [email protected]
automation:
- alias: Send test mail
trigger:
platform: time
after: 'xx:xx:xx'
action:
service: notify.send_email_to_myself
data:
title: 'Test Email'
message: 'Test'
To enable notification by e-mail in your installation, add the following to your configuration.yaml file:
# Example configuration.yaml entry
notify:
- name: "NOTIFIER_NAME"
platform: smtp
sender: "YOUR_SENDER"
recipient: "YOUR_RECIPIENT"
https://bbs.hassbian.com/thread-2759-1-2.html
0