Send SMS from Home Assistant
To send SMS messages through ClickSend, follow these steps:
Setup
Visit the official Home Assistant guide:
Notify with [ClickSend setup]
Add the provided configuration in your configuration.yaml file.
Trigger SMS Automatically
Once configured, call the service:
[notify.clicksend]
with the following service data:
json
CopyEdit
{
"message": "This is an example SMS message!"
}
You can use this in automations to notify you when events happen (e.g., motion detected, door opened, etc.)
Send Voice (Text-to-Speech) Call
ClickSend also supports sending voice calls by converting text to speech.
Setup
Visit the official Home Assistant TTS guide:
[ClickSend TTS setup]
Add the necessary configuration to your configuration.yaml file.
Trigger Voice Call Automatically
Once configured, call the service:
clicksend_tts.send_say_call
with the following service data:
json
CopyEdit
{
"message": "This is an example voice call!"
}
This can be used for more urgent or attention-grabbing alerts through phone calls.