send SMS in C#
-
Hello everybody How can i send SMS in C#
-
Hello everybody How can i send SMS in C#
Putting that question into Google will find you lots of suggestions.
-
Hello everybody How can i send SMS in C#
Actually looking just on CP[^] gives quite some results (in various languages and methods). Some of my first finds: Send and Read SMS through a GSM Modem using AT Commands[^] How to Send SMS Messages from C# using an SQL Database[^] SMS Service[^] I'm sure you can find more...
It's an OO world.
public class Naerling : Lazy<Person>{
public void DoWork(){ throw new NotImplementedException(); }
} -
Hello everybody How can i send SMS in C#
as you live in iran same as me, you can use some company web services to send sms via your web application. if you buy a web service , they give you a uri of service, and you just need to add web reference to your reference folder, and in your code, you just need to make a new method of that, and pass some param to web service. this my code:
var b = new ArrayOfString();
b.Add("با تشکر از شما جهت ایجاد اشتراک در سایت هلال. کد اشتراک :" + txtSubsCode.Text + "از این پس میتوانید جهت سفارش غذا با شماره:4242998 تماس حاصل نمایید.\n" +"لیست غدایی ما در بخش منوی سایت موجود میباشد");
var c = new ArrayOfString();
c.Add(submit.MobileNo);
var aaa = new sms.sendSmsWebServiceSoapClient();
aaa.sendSms("test", "password", "username", b, c, 1, "30008672");