The Power To Message

Register Now

Get started in minutes - simple, quick and free. Upon registering you will receive 5 free test credits to send SMS's with.

register

Also See:

Python code sample

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

import urllib

url = "http://usa.bulksms.com: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()