What is n8n?
n8n is a development tool for workflow automation. By combining different nodes you can create different workflows for numerous scenarios.
Functionality
SMS dispatch
Add the sms77 node to your workflow to send SMS. The possibility to combine it with other nodes enables you to build workflows for all kinds of use cases.
Dispatch text-to-speech messages
Add the sms77 node to your workflow for making text-to-speech calls. With this node the given text gets converted to a speech message which gets read out loud after the given recipient number has answered the call. This node too gives you the chance combining it with other nodes for realizing complex scenarios for all kinds of use cases.
Installation
The sms77 node is available in n8n, a separate installation is not necessary.
Example SMS dispatch
Pass whatever text to the node allows sending the message to any number of recipient(s) of choice.
Steps
- Copy the workflow code by left clicking
- Navigate to the n8n editor
- Click anywhere inside the n8n window
- Paste in the code using ctrl/cmd + v
Caution: Workflows often need initial setup, e.g. filling in credentials.
Code
{
"id": "123",
"name": "SMS dispatch via sms77",
"nodes": [
{
"name": "Start",
"type": "n8n-nodes-base.start",
"position": [250, 300],
"parameters": {},
"typeVersion": 1
},
{
"name": "Sms77",
"type": "n8n-nodes-base.sms77",
"position": [450, 300],
"parameters": {
"message": "Hi there, I was sent from n8n!"
},
"credentials": {
"sms77Api": "_MySuperSecretApiKeyFromSms77_"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Start": {
"main": [
[
{
"node": "Sms77",
"type": "main",
"index": 0
}
]
]
}
}
}
Support
Please send us a mail if you have questions about the sms77 nodes in n8n.