11 lines
232 B
Go
11 lines
232 B
Go
![]() |
package platform
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestNewSms(t *testing.T) {
|
||
|
err := NewSms().Send()(SmsSendModeForGroup, &SmsParam{
|
||
|
Mobile: []string{"17718184079"}, Content: "【商挈科技】您的验证码是789789",
|
||
|
})
|
||
|
t.Log(err)
|
||
|
}
|