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?)
Then email, your wireless carrier website, iMessage/Android Messages, and Google Voice are all great options for sending text messages from your computer. These tools all work for sending personal 1-on-1 text messages.
You can still text away with a computer via WiFi. Texting from a laptop has its perks: it's (usually) free, typing is easier and faster, and best of all, you can look busy when you're not.
Most major carriers offer an email to text service. The program can use email to send an SMS message. For example:
var message = new MailMessage();
message.From = new MailAddress("[email protected]");
message.To.Add(new MailAddress("[email protected]"));//See carrier destinations below
//message.To.Add(new MailAddress("[email protected]"));
//message.CC.Add(new MailAddress("[email protected]"));
message.Subject = "This is my subject";
message.Body = "This is the content";
var client = new SmtpClient();
client.Send(message);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With