Files

11 lines
232 B
Go
Raw Normal View History

2021-09-30 12:09:45 +08:00
package platform
import "testing"
func TestNewSms(t *testing.T) {
err := NewSms().Send()(SmsSendModeForGroup, &SmsParam{
Mobile: []string{"17718184079"}, Content: "【商挈科技】您的验证码是789789",
})
t.Log(err)
}