短信rpc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
320 B

package smsrpc
import (
"testing"
)
func Test_SendWoSms(t *testing.T) {
cpcode := "AACDUZ"
key := "c1a4245d51ad7315e7c1bb5d80eb98b0"
excode := "750058"
msg := "345678"
mobiles := "18607565510"
templetId := "290901"
ret, err := SendWoSms(cpcode, key, msg, mobiles, excode, templetId)
t.Log(ret)
t.Log(err)
}