With Twidget, you can send SMS messages to phones using the Send SMS
command. This functionality varies depending on the provider. Currently, we support Twilio as the SMS provider.
-
To use Twilio for SMS integrations, you will need:
A Twilio account ID
Twilio Auth Token
A Twilio-provided phone number
These credentials can be obtained by registering with Twilio.
To send an SMS:
Provide Twilio Credentials: Ensure that your Twilio account ID and Auth Token are correctly populated in your API settings.
Specify Phone Numbers: Input the phone number that you wish to send the SMS to.
Enter the message content: Populate the receiver's message content
By default, SMS commands sent via testing mode will succeed without actually sending an SMS. This prevents accidental messages during development.
To test real SMS messages:
You can send emails from Twidget using the Send Email
command.
-
The Send Email
command requires email settings:
By default, it will use the email details you provide in your API settings.
Alternatively, you can override the settings by selecting Custom Email Settings in the dropdown.
To send an email:
Provide Email Settings: If using custom settings, specify host, port, username, and password for your email provider.
Recipient Information: Populate the receiver's email, email subject, and email content.
By default, email commands sent via testing mode will succeed without actually sending an email, ensuring test emails aren’t sent by accident.
To test real emails:
Variables
Variables are essential building blocks in Twidget that allow you to store and manipulate data dynamically within your no-code applications. They enable you to create flexible and interactive applications by holding values that can be changed and referenced throughout your workflow. Creating Variabl...
Return
The `return` command in Twidget is a special command used to halt the current command workflow and immediately return a specified result. This command overrides any subsequent processes and outputs the return result regardless of the rest of the workflow logic. This command is particularly useful fo...
Send External HTTP Request
Using Twidget, you can send external HTTP requests effortlessly. This functionality allows you to communicate with external servers or APIs. Below, you will find the necessary parameters and structure to set up an HTTP request. Parameters. - URL: The endpoint to which the request will be sent. - Met...
Math
Twidget offers a variety of commands to manipulate numbers. Below are the math commands available, along with their descriptions, inputs, and outputs. Sum. Description: Adds together a list of numbers and returns the sum. - Inputs: - `numbers`: A list of numbers to be added together. - Output: A sin...
Loops
In Twidget, loops allow you to execute commands multiple times, either based on a condition or through a set number of iterations. Loops can also be nested, meaning you can run loops within other loops, creating complex logic for your tasks. List Loop. The `List Loop` command enables you to loop thr...