12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace iNethinkCMS.Helper
- {
- public class Messager
- {
- public static string Send(string tel, string content)
- {
- DateTime Now = DateTime.Now;
- string time = Now.ToString("yyyy-MM-dd hh:mm:ss");
- string t = Now.ToString("yyyyMMddhhmmss");
- string url = $"http://liyafangzhou.eicp.net:8600/webService/SendSmsMessage?account=681990&password=2015lwth@1234&phone={tel}&content={content}&time={time}&t={t}";
- return Common.HttpWebRequestGET(url);
- }
- }
- }
|