Advertisement
Guest User

Untitled

a guest
Nov 15th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. from message360.message_360_client import *
  2.  
  3. user = 'jerell.goodman@budgetvanlines.com'
  4. password = 'D1al3r4D1al1ng!'
  5.  
  6. client = Message360Client(user, password)
  7.  
  8. sms_client = client.sms
  9.  
  10. collect = {}
  11.  
  12. fromcountrycode = 1
  13. collect['fromcountrycode'] = fromcountrycode
  14.  
  15. mfrom = '8006116001'
  16. collect['mfrom'] = mfrom
  17.  
  18. tocountrycode = 1
  19. collect['tocountrycode'] = tocountrycode
  20.  
  21. to = '7276432683'
  22. collect['to'] = to
  23.  
  24. body = 'Hey Greg, it\'s Greg'
  25. collect['body'] = body
  26.  
  27. result = sms_client.create_send_sms(collect)
  28.  
  29. #def create_send_sms(self, options = dict())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement