I'm trying to setup SMTP notify in configuration.yaml. As long as I only put in the following, the notify.email is an option but as soon as I had the line server: "smtp.domain.com" in configuratin.yaml it no longer works. Obviously the server, sender and recipient lines are actual ones to be used, not the fillers here. Any ideas? If I can't get past this I have no hope of making email notifications. HA version I'm using is core 2025.1.0, supervisor 2024.12.3 , operating system 14.1, frontend 20240103.0
Example configuration.yaml entry (This works as far as notify.email becomes an available action)
notify:
- name: "email"
platform: smtp
sender: "me@domain.com"
recipient: "you@youremail.com"
Example configuration.yaml entry (this fails as notify.email is no longer an available action)
notify:
- name: "email"
platform: smtp
server: "smtp.domain.com"
sender: "me@domain.com"
recipient: "you@youremail.com"