Does anybody knows about free webservices to send sms?
I familiar with servicex.net but the address of the web service dows not much nothing.
any idea can help.
Thank you all.
Printable View
Does anybody knows about free webservices to send sms?
I familiar with servicex.net but the address of the web service dows not much nothing.
any idea can help.
Thank you all.
This might be helpful to you !!!.
:wave:Code:using System.Web.Mail:D;
.
.
.
string toPhoneNumber = "DestinationPhoneNumber";
string login = "YoureIPIPIUsername";
string password = "YourPassword";
string compression = "Compression Option goes here - find out more";
string body = "Your Message";
System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage();
mail.To = toPhoneNumber + "@sms.ipipi.com";
mail.From = login + "@ipipi.com";
mail.Subject = compression;
mail.Body = body;
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", login);
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", password);
System.Web.Mail.SmtpMail.SmtpServer = "ipipi.com";
System.Web.Mail.SmtpMail.Send( mail );