Still need help to add email notification to HA

I already have Pushover notifications on HA but also want to add email notification. Hoiwever when I add SMTP I get :
image

Error mean you have a duplication" notify" in your config yaml. You can only have one. You can add the smtp to the existing notify setting.

notify:
   - platform: existing one
    name: existing one.

  - platform: smtp
    name: "NOTIFIER_NAME" 
    sender: "YOUR_SENDER"
    recipient: "YOUR_RECIPIENT"
1 Like

Thanks !!! I try that now,

image

No success (for security I deleted API/KEY from picture

It’s a syntax error, you need a dash with a new service.

image

[

it’s complaining about your space/tab, can you paste your code. yaml is space sensitive.

Thanks so much for taking the time

try putting a space before the dash.
you can also test your code with a yaml validator https://jsonformatter.org/yaml-validator

I am on my way out but will try later. THANKS