短信发送方法
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
315 B

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