不是通过短信猫发送,是通过一个什么协议现实短信群发,应该是网络版吧,那位朋友有类似的源码发我一份,有文档也行,说说思路也行!!

解决方案 »

  1.   

    网上有DEMo,源码没人会给的,要卖钱
      

  2.   

    sina就有一个短信服务的service,你可以搜一下
      

  3.   

    正好做过一个以移动mas平台为接入服务器的短信系统
    #region Mas平台
    ImApiDotNet.APIClient apiclient = new APIClient();
    apiclient.init("IP地址", "用户名", "密码", "数据库", "mas");
    if (apiclient != null)
    {
          string sDateTime = string.Empty;
          if (CheckBox1.Checked == true)
                 sDateTime = Datetime.Now;
          else
                 sDateTime = txt_SendTime.Text.Trim() + " " + DropDownList1.SelectedItem.Value + ":" + DropDownList2.SelectedItem.Value + ":00";
          apiclient.sendSM(sPhone.Split(','), sContent, sDateTime, 168, 168);
          apiclient.release();
          apiclient = null;
    }
    #endregion
      

  4.   

    另一个平台的
    SMJETCTRLLib.SendMsgClass NetMsg = new SMJETCTRLLib.SendMsgClass();
    if (NetMsg.Init("IP地地", 端口号) == 1)
    {
        string sSmsName = 用户名;
        string sSmsPwd = 密码;
        if (NetMsg.Connect(sSmsName, sSmsPwd) == 1)
        {
            NetMsg.Append = "不用";
            NetMsg.Level = "普通";
            NetMsg.Content = sContent;
            NetMsg.Time = DateTime.Now.ToString("yyyyMMddhhmmss");
            NetMsg.SPCode = "";
            NetMsg.SendExt(ref arrPhone);
        }
    }