class Sms
Constants
- URL
Public Class Methods
send(uid,pwd,mobile,content)
click to toggle source
# File lib/sms.rb, line 5 def Sms.send(uid,pwd,mobile,content) response = Func.post(URL,{'ac'=>"send",'uid'=>uid,'pwd'=>pwd,'mobile'=>mobile,'content'=>content}) return response.body=="100" end