Esempio n. 1
0
def send(mobile, password, to, message):
    with Fetion(mobile, password) as x:
        x.send(to, message)
Esempio n. 2
0
def send(mobile, password, to, message):
    x = Fetion(mobile, password)
    x.send(to, message)
Esempio n. 3
0
def send2self(mobile, password, message):
    with Fetion(mobile, password) as x:
        x.send2self(message)
Esempio n. 4
0
def send2self(mobile, password, message):
    x = Fetion(mobile, password)
    x.send2self(message)