mrt:twilio

v1.1.0Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

twilio-meteor

a smart package wrapper for twilio

This smart package exposes the api from twilio's npm module.

To use it, simply call upon Twilio

####To create a Sms

1
2  twilioClient = Twilio(Acc_SID, Auth_token);
3    twilioClient.sendSms({
4      to:   '+15555555555',
5      from: '+15555555555',
6      body: 'the twilio send was successful!!'
7  },function(err, data) {
8    console.log(err, data);
9  });
10