2017-01-03 60 views
0

我正在使用http://www.fast2sms.com發送羣發SMS的朋友。但現在我想向每位新用戶發送歡迎短信和確認短信。我正在使用WordPress網站。 Fast2SMS爲我提供了一個API:SMS網關設計Fast2SMS

http://api.fast2sms.com/sms.php?token=&mob=&mess=&sender=SONIIN&route=0

token= Your UNIQUE TOKEN ID 
mob= 10 Digit Indian Mobile Number 
mess= 145 Character (English only) 
sender= 6 Digit Sender ID 
route=0- NonDND & 1- DND 

請告訴我如何使用它,如果可能的話再告訴我如何建立它在我的WordPress管理面板

+0

可以讓插件this.In插件添加鉤狀https://codex.wordpress.org/Plugin_API/Action_Reference/user_register –

回答

0

這是接受一個GET請求,所以...

$token = "1SDJGWEH"; 
$mob = "7855212520"; 
$msg = "HELLO"; 
$sender = "Hola"; 

$url = "http://api.fast2sms.com/sms.php?token=".$token."&mob=".$mob."&mess=".$msg."&sender=".$sender."&route=0"; 

$resp = file_get_contents($url); 

print_r($resp); 

這將工作...

使POST請求,您需要使用CURL

+0

謝謝,您的幫助 –