2011年03月12日 星期六 11:38
用脚本发送第一条短信
import appuifw
import messaging#导入信息模块
#输入你的名字
data = appuifw.query(u“Type your name:“, “text“)
number = “123456“ # 要发送到的手机号码
txt = u“Greetings from:“ +data
if appuifw.query(u“send?“,“query“) == True:
messaging.sms_send(number, txt)
appuifw.note(u“ok“, “info“)
else:
appuifw.note(u“failed“, “info“)
一些说明,messaging.sms_send(number, txt)即为发送函数。第一个是号码,第二个是内容。
Zeuux © 2024
京ICP备05028076号