Click here to Skip to main content
15,890,282 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends
i m developing a project vb.net windows application. now i need to send sms in my application no matter using free webservice but i dont know how to use. if you know plz reply

Thanks
Posted
Comments
bbirajdar 27-Mar-12 9:44am    
Why would somebody allow you to send free SMS through their webservice. There is no free lunch...

 
Share this answer
 
v2
Comments
gopi1987 27-Mar-12 9:54am    
Thanks for ur reply Mr B Birajdar
please see this codeProject samples:
Using VB.NET to Encode SMS and EMS[^]

Send a Text Message to a Cell Phone from a VB.NET Application[^]


OR


add this VB.NET code:


Imports System.Web.Mail
.
.
.
Dim toPhoneNumber As String = "DestinationPhoneNumber";
Dim login As String = "YoureIPIPIUsername"
Dim password As String = "YourPassword"
Dim compression As String = "Compression Option goes here - find out more"
Dim body As String = "Your Message"
Dim mail As System.Web.Mail.MailMessage = 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)

Note:
This implementation requires .Net Framework version 1.1 or higher.
 
Share this answer
 
using BulkSMS sites
just purchase a sms pack from bulk-sms sites.
they will give you an account. and also tell them you will need API for this.
the providers will give you API code just copy paste that code & follow some instruction given by them like change parameters loginname, pwd, msg-string, receiver's mobile no. etc.
Happy Coding!
:)
 
Share this answer
 
hi friends,
i am mayank .i have created a project sms based information system in .net .it is a window application.so please help me to send a source code to using pc to send multipul users are send sms online.......


thanks to u
email id
 
Share this answer
 
v2
Comments
[no name] 23-Aug-12 10:52am    
This is not an answer to the question posted and posting your email address is an invitation to getting SPAM.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900