messaging Module
The messaging module allows to send ordinary short messages by envoking the sms_send function with a telephone number and a message as the only parameters needed.
sms_send(recipient, message)
#Sending a text message to the number
from messaging import *
sms_send('+391234567',u’Hello!’)
