1、先找短信服务商开通短信接口,在项目中引用接口,之后就是写程序调用接口,把需要传的参数都传递过去,就OK了。
2、发送短信后会有返回结果,根据返回的内容去匹配返回内容。
///
/// 短信发送
///
/// 目标号码,用英文逗号(,)分隔,最大100个号码。
/// 短信内容, 内容长度不大于350个汉字
/// 号码个数(最大100个手机)
///
public static bool SendMessage_System(string userTel, string content, int count)
{
com.montnets.ws.wmgw ms = new com.montnets.ws.wmgw();
string str = ms.MongateCsSpSendSmsNew(Common.Common.message_access, Common.Common.message_pwd, userTel, content, count, "*");
if (str.Length > 10 && str.Length < 25)
{
return true;
}
else
{
return false;
}
}