如何使用Sinch SMS Gateway在Asp.net页面中获取短信

时间:2018-09-02 07:29:26

标签: c# asp.net sms-gateway

如何在Asp.net C#页面中接收SMS请求参数。

我无法收到这样的邮件:

 string from = Request.Params["msisdn"] == null ? string.Empty : Request.Params["from"].ToString();

 string to = Request.Params["to"] == null ? string.Empty : Request.Params["to"].ToString();

 string body = Request.Params["text"] == null ? string.Empty : Request.Params["message"].ToString();

请帮帮我

Angreg Singh

0 个答案:

没有答案