twilio@1.0.5
This adaptor exports the following from common:
- alterState()
- dataPath()
- dataValue()
- each()
- field()
- fields()
- fn()
- fnIf()
- lastReferenceValue()
- merge()
- sourceValue()
Functions
sendSMS
sendSMS(params) ⇒ Operation
Sends an SMS message to a specific phone number
| Param | Type | Description | 
|---|---|---|
| params | Object | an object containing 'body', 'from', and 'to' keys. | 
Example
sendSMS({
 body: dataValue('sampleText'),
 from: dataValue('myFromNumber'),
 to: dataValue('ukMobile'),
});