- SendSMSMsg中处理重复号码的情况

This commit is contained in:
gazebo
2019-09-06 13:37:47 +08:00
parent 5bc792f337
commit 898955729e

View File

@@ -25,6 +25,7 @@ var (
func SendSMSMsg(mobileList []string, signName, templateCode string, templateParam map[string]interface{}) (err error) {
errList := errlist.New()
mobileList = jxutils.StringMap2List(jxutils.StringList2Map(mobileList))
for _, mobileNum := range mobileList {
if mobileNum != "" {
globals.SugarLogger.Debugf("SendSMSMsg mobileNum:%s, templateCode:%s", mobileNum, templateCode)