make sms function working for the local service

bzr revid: mga@tinyerp.com-20090219055532-5iybto8sdf183v55
This commit is contained in:
mga (Tiny/Axelor) 2009-02-19 11:25:32 +05:30
parent 6939b50421
commit 7eb762151c
1 changed files with 4 additions and 3 deletions

View File

@ -381,9 +381,10 @@ def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=Non
# text must be latin-1 encoded
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)
url = "http://api.urlsms.com/SendSMS.aspx"
#url = "http://196.7.150.220/http/sendmsg"
params = urllib.urlencode({'UserID': user, 'Password': password, 'SenderID': api_id, 'MsgText': text, 'RecipientMobileNo':to})
f = urllib.urlopen(url+"?"+params)
# FIXME: Use the logger if there is an error
return True