Skip to content

Instantly share code, notes, and snippets.

@dburles
Created July 16, 2014 01:22
Show Gist options
  • Save dburles/729436f41730b23fae7f to your computer and use it in GitHub Desktop.
Save dburles/729436f41730b23fae7f to your computer and use it in GitHub Desktop.
sendVideoMessagingSMS: function(to, message) {
check([this.userId, to, message], [String]);
twilio.sendSms({
to: to,
from: "...",
body: message
}, function(error, response) {
if (error)
throw new Meteor.Error(503, "Failed to send SMS.");
return response;
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment