Skip to content

Instantly share code, notes, and snippets.

@valakhosravi
Last active April 27, 2021 11:17
Show Gist options
  • Select an option

  • Save valakhosravi/3e3260eb30dc41bfefff9d7e60a937c9 to your computer and use it in GitHub Desktop.

Select an option

Save valakhosravi/3e3260eb30dc41bfefff9d7e60a937c9 to your computer and use it in GitHub Desktop.
Niazpardaz sms sending in python
def send_test_msg() {
url = "http://www.payamak.vip/api/v1/RestWebApi/SendBatchSms"
body = {
'userName': username,
'password': password,
'fromNumber': sender_number,
'toNumbers': number_list, # array
'messageContent': message,
'isFlash': False,
}
r = requests.post(url, data=body)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment