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:
Managing Files
Twidget offers a set of commands to manipulate files in your file store. Below are the descriptions and usage of each command to help you understand how to utilize them effectively. Get File. Retrieve a file via file path. Inputs: - `path`: The file path to retrieve the file from. Outputs: - `filena...
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...
Database
Twidget offers many commands to manage data in your database. Below is a list of the available commands and their functionalities: Get Data. Retrieve an entry from a table. Get Multiple Data. Retrieve multiple entries from a table. Save Data. Save an object to a database table. Save Multiple Data. S...
Date
Twidget offers a variety of commands to manipulate date objects. Below are the available commands along with their respective descriptions, inputs, and outputs. Current Date. Description: Returns the current date and time. Output: - Type: DATE Add Time. Description: Returns the date plus a specified...
Error Handling
When building applications with Twidget, you may encounter situations where you need to handle errors gracefully to ensure your application runs smoothly. Twidget provides two powerful commands for error handling: `try-catch` and `throw-error`. This documentation will guide you on how to use these c...