Send SMS via Twilio. You should create your account in Twilio first.
This module requires deployd ~0.7.0.
If you haven't used Deployd before, make sure to read the documentation.
npm install dpd-twilio
If you have a package.json, you'll have to add this module in it.
npm install dpd-twilio --save
Once it is installed, Deployd will automatically load it.
For more information about Modules, take a look at the module page on the deployd documentation.
It is a simple twilio wrapper for deployd
Require:
- twilioAccountSid
- twilioAuthToken
- defaultFromTel
Please fill them in using the deployd dashboard config page of this module.
// send a SMS to +123456789
dpd.twilio.post({to:'+123456789', body:'Hello World!'});
Just send me a Pull Request in Github.
- 0.1.0: first version