The Power To Message

Regístrate Ahora

Es fácil y rápido y recibirás un bono de 5 créditos sin costo.

register

Ver también:

Python code sample

Simplest case - sending a single message, with no error checking:

import urllib

url = "http://bulksms.com.es:5567/eapi/submission/send_sms/2/2.0"
url += "?username=myusername&password=xxxxxx&message=Testing+from+Python&msisdn=44123123123"
f = urllib.urlopen(url)
# Read from the object, storing the page's contents in 's'.
s = f.read()
# Print the contents
print s

f.close()