I'm looking to build a program that would allow me to send SMS messages directly from the C# Application. I intend to build an 'Automatic Appointment Reminder' system that would automatically send SMS messages to recipients' mobile phones notifying them of their upcoming appointment.
Could anyone advise on how I would implement this type of feature as I have no experience in 'Mobile Communications' and mobile connectivity with desktop applications.
My carrier is EE (If that helps?)
Any help would be greatly appreciated.
Twilio has a C# helper library that will let you do this.
Here's the code you'd need to send a text message with the library:
Disclaimer: I work for Twilio.
Most major carriers offer an email to text service. The program can use email to send an SMS message. For example:
Send an email
Carrier destinations
Alternatives
You can send sms through variety of ways
You can understand the basic logic for each of the above points through the link provided below and try to achieve that in your code.
http://www.codeproject.com/Articles/19023/Sending-SMS-using-NET
You need to create an instance of the sms engine in your form constructor like this.