示例#1
0
文件: __init__.py 项目: raji91/OE7
def send(mobile, password, to, message):
    with Fetion(mobile, password) as x:
        x.send(to, message)
示例#2
0
def send(mobile, password, to, message):
    x = Fetion(mobile, password)
    x.send(to, message)
示例#3
0
文件: __init__.py 项目: raji91/OE7
def send2self(mobile, password, message):
    with Fetion(mobile, password) as x:
        x.send2self(message)
示例#4
0
def send2self(mobile, password, message):
    x = Fetion(mobile, password)
    x.send2self(message)