I’m trying to set up an automation in Home Assistant using the Twilio API to send myself a message at a specific time. Here’s my current configuration in the configuration.yaml file:
yaml
notify:
- name: Cody Wirth
platform: twilio_sms
account_sid: AC8a4f2f40331bdad5c95265f2cefe26a2
auth_token: 33a693e18dcad513d4791c51f1071227
from_number: “+16142896777”
automation:
- alias: Send message at a given time
trigger:
platform: time
hours: 24
minutes: 47
seconds: 15
action:
service: notify.twilio_sms
data:
message: ‘The sun has set’
target: - “+16147059227”
However, nothing is happening when the automation should trigger. The error message I’m getting is:
17-01-12 08:17:44 WARNING (MainThread) [homeassistant.core] Unable to find service notify/twilio_sms
I’ve checked my syntax and compared it with the correct configuration shown on Stack Overflow, but I’m still having issues. Could there be something I’m missing in the Twilio setup? Maybe I need to configure something on Twilio’s end to allow the messages to go through.
If anyone has successfully set up Twilio with Home Assistant, I’d love to hear how you did it! Any tips or troubleshooting steps would be greatly appreciated. Let’s figure this out together!