3.1.0 • Published 4 years ago
@runnerty/notifier-twilio v3.1.0
Twilio SMS notifier for Runnerty:
For use with twilio SMS services. More info: twilio on NPM
Installation:
Through NPM
npm i @runnerty/notifier-twilioYou can also add modules to your project with runnerty
npx runnerty add @runnerty/notifier-twilioThis command installs the module in your project, adds example configuration in your config.json and creates an example plan of use.
If you have installed runnerty globally you can include the module with this command:
runnerty add @runnerty/notifier-twilioConfiguration sample:
Add it in the notification section of the config.json file. More information here:
{
"id": "twilio_default",
"type": "@runnerty-notifier-twilio",
"account": "AC1234567890",
"token": "ABC123",
"from": "+99123456789"
}Plan sample:
Add add it to any chain or process notification event. More information here:
{
"id": "twilio_default",
"to": "+99123456789",
"message": "Process @GETVALUE(PROCESS_ID) Running!"
}