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.
Installation
The sms77 node is available in n8n, a separate installation is not necessary.
Beispiel SMS-Versand
Pass whatever text to the node allows sending the message to any number of recipient(s) of choice.
Übergeben Sie einen belieben Nachrichteninhalt an den Knoten um jenen Text als SMS an beliebig viele Empfänger zu senden.
Steps
- Copy the workflow code by left clicking
- Navigate to the n8n editor
- Click anywhere on the n8n window
- Paste in the code using strg/cmd + v
Hinweis: Workflows often need initial setup, eg. 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 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 node in n8n.