In server/tools/misc.py correct folling code.

Rightnow clickatell.com is commented so you need to uncoment this line and 
comment the 196.7.150.220. 
or simply overwrite the following function with current one.

def sms_send(user, password, api_id, text, to):
    import urllib
    params = urllib.urlencode({'user': user, 'password': password, 'api_id': 
api_id, 'text': text, 'to':to})
    f = urllib.urlopen("http://api.clickatell.com/http/sendmsg";, params)
    #f = urllib.urlopen("http://196.7.150.220/http/sendmsg";, params)
    print f.read()
    return True




_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman/listinfo/tinyerp-users

Reply via email to