Guest User

Untitled

a guest
Oct 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var sendSMSText = function (recipient) {
  2. var smsQueue = new Firebase('https://.firebaseio.com/sms/' + recipient.phone);
  3. smsQueue.set({
  4. name: recipient.name,
  5. phone: recipient.phone
  6. }, onSuccess)
  7. };
Add Comment
Please, Sign In to add comment