简体   繁体   English

如何在.net中设置短信发送网站?

[英]How To Setup A Sms Sending Website in .net?

i have a project on newsletter management system. 我有一个关于新闻通讯管理系统的项目。 in asp.net.. i am student and i want to provide such a facility in my project for who is become a member of my website and join a group in that so .. whenever admin put a news or any tips and trick.. it will be sent on that group member .. via sms.. 在asp.net中。我是学生,我想在我的项目中提供这样的设施,以便谁成为我的网站的成员并加入该团体,以便..每当管理员发布新闻或任何提示和技巧时..它将通过短信发送给该组成员。

so.. can any one tell me how can i setup sms feature website? 所以..谁能告诉我如何设置短信功能网站?

i am allready know about email feature.. but i want to add sms feature in it.. 我已经知道电子邮件功能..但我想在其中添加短信功能。

help is required .. do know anything about sms sending feature in .net enter code here 需要帮助..对.net中的短信发送功能一无所知

Use Skype API. 使用Skype API。 It's pretty slick. 非常漂亮。

Zeep Mobile is free: Zeep Mobile是免费的:

http://www.zeepmobile.com/ http://www.zeepmobile.com/

you can use any API of sms providers like way2sms.. 您可以使用诸如way2sms之类的sms提供程序的任何API。

HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?
   uid=*****&pwd=****&msg=" + textBox2.Text + "&phone=" + textBox1.Text + "&provider=way2sms");             
HttpWebResponse myrep = (HttpWebResponse)req.GetResponse();          

Most cell phone carriers have a email to SMS feature. 大多数手机运营商都有电子邮件发送短信功能。

If someone has an AT&T account and a number of 202-555-1212, you can send an email to 2125551212@Txt.ATT.Net and AT&T will convert it to an SMS message and send it to a their telephone. 如果某人拥有一个AT&T帐户并且号码为202-555-1212,则可以发送电子邮件至2125551212@Txt.ATT.Net ,AT&T会将其转换为SMS消息并将其发送到他们的电话。

So when a new user creates a profile, you will have to capture their phone number and their carrier as well. 因此,当新用户创建个人资料时,您将必须捕获其电话号码和运营商。

Alternatively, if you do want purely SMS messages, there are several services like the one shown below that will send out SMS messages for you. 另外,如果您只想接收SMS消息,则可以使用如下所示的几种服务来为您发送SMS消息。

http://www.hummingbytes.com/SolutionPages/Solutions_SMS.aspx http://www.hummingbytes.com/SolutionPages/Solutions_SMS.aspx

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM