Send Sms Example
import appuifw
import messaging
data = appuifw.query(u"Type your name:", "text")
nbr = "123456"
txt = u"Hi!" +data
messaging.sms_send(nbr, txt)
#sends sms to number=nbr and as text = txt
#Be careful nbr and txt both must be string literals only