using System;
using System.Collections.Generic;
using System.Text;
namespace RoadFlow.Utility
{
///
/// 手机短信类
///
public class SMS
{
///
/// 发送手机短信
///
/// 内容
/// 手机号码(多个用逗号分开)
///
public static bool SendSMS(string contents, string mobileNumbers)
{
if (contents.IsNullOrWhiteSpace())
{
return false;
}
string[] numbers = mobileNumbers.Split(',');
foreach (string number in numbers)
{
}
return true;
}
}
}