Sending an SMS to a Cellphone using Django Sending an SMS to a Cellphone using Django django django

Sending an SMS to a Cellphone using Django


Hi my name is Jarod and I work for Twilio.com so I am a little biased. But with that said, it is super easy to send an SMS from your Python web application using the Twilio Rest Api. Here is a simple example:

# Download the Python helper library from twilio.com/docs/python/install from twilio.rest import TwilioRestClient# Your Account Sid and Auth Token from twilio.com/user/accountaccount_sid = "{{ account_sid }}"auth_token  = "{{ auth_token }}"client = TwilioRestClient(account_sid, auth_token)message = client.messages.create(    body="Jenny please?! I love you <3",    to="+15558675309",    from_="+14158141829",    media_url="http://www.example.com/hearts.png")print message.sid


From a technical standpoint, the easiest way to accomplish SMS sending with any web-app is through e-mails. Most cell providers usually give out email accounts to their users, and sending a mail to said account will more likely than not redirect the mail to their cell via SMS. However, not all carriers do this and some charge extra for this type of service. In this case, you could handle this checking out the following Django documentation page

However, as mentioned, this isn't a really complete solution, so the easiest way would be to use a SMS-gateway. Mostly, they provide simple REST based API's for sending text messages to cell phones. The API would vary obviously from carrier to carrier. I would recommend checking out Kannel in case you're looking for a free and open source solution (that is assuming you want to install the actual gateway on your server).

Anyway, I would start out trying to get it to work with the e-mail scenario, and then moving on to using a carrier if you actually require it. Hopefully this helps somewhat.


I answered a similar question, a bit late to the game, in another post. Here it is for additional information. Hope it helps:

I was struggling with this for some time and really liked the Twilio option. But then I dug deeper and found that there is a Google Voice API called pygooglevoice that works. Clean, easy... No carrier lookup... For example, set up a virtualenv and install with pip:

pip install pygooglevoice

Then use something like this:

from googlevoice import Voicefrom googlevoice.util import inputdef send(number, message):    user = 'user@gmail.com'    password = 'password'    voice = Voice()    voice.login(user, password)    #number = input('Number to send message to: ') # use these for command method    #message = input('Message text: ')    voice.send_sms(number, message)

Please note that I have done limited testing with this so I'm not sure all the pros and cons. It's quite possible that there are limitations I haven't discovered yet. But in the time I've played around with it, I've been happy.