Click here to Skip to main content
6,916,824 members and growing! (15,546 online)
Email Password   helpLost your password?
Languages » VB.NET » HowTo     Beginner License: The Code Project Open License (CPOL)

Email and SMS Sending Through VB.NET for Free

By balaji2525

Send free SMS from your VB.NET application
VB, .NET, Visual-Studio (VS.NET2003, VS2005, VS2008, VS2010)
Revision:7 (See All)
Posted:8 Nov 2009
Updated:17 Nov 2009
Views:6,548
Bookmarked:22 times
printPrint Friendly   add Share
      Discuss Discuss   Broken Article?Report  
10 votes for this article.
Popularity: 2.26 Rating: 2.26 out of 5
4 votes, 40.0%
1
1 vote, 10.0%
2
3 votes, 30.0%
3

4
2 votes, 20.0%
5

Introduction

This VB.NET code sends Email and SMS for free with the help of your Gmail ID. One main advantage of this is that you can send SMS for free because most webservices are not free to use with your application.

Using the Code

I used Gmail as my SMTP server and Mytoday to support free SMS Service here in this code. Since this code uses Gmail SMTP server, you need a Gmail account to send Email. Actually SMS from the application is sent from the Email. You can send SMS only to particular numbers in India. When you register your phone number in the website http://email2sms.netcore.co.in/, an Email ID will be given for the phone number which you register, so that when you mail to that id the message will be received as SMS in the particular number. Suppose the phone number is 9897345890 the mail id given from that website will be like this 9897345890@m3m.in. It works only for Indian numbers.

To run this application successfully, two things should be done:

  1. You must have Gmail ID.
  2. Register the phone number which you are going to use in a website http://email2sms.netcore.co.in/.
Private Sub Button1_Click(ByVal sender As System.Object, _
	ByVal e As System.EventArgs) Handles Button1.Click

Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage
smtpServer.Credentials = New Net.NetworkCredential_
	(TextBox1.Text & "@gmail.com", TextBox2.Text)
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail.From = New MailAddress(TextBox1.Text & "@gmail.com")
If RadioButton1.Checked = True Then
mail.To.Add("91" & TextBox3.Text & "@m3m.in")
ElseIf RadioButton2.Checked = True Then
mail.To.Add(TextBox3.Text)
End If
mail.Subject = TextBox4.Text
mail.Body = TextBox5.Text()
smtpServer.Send(mail)
MsgBox("mail is sent", MsgBoxStyle.OkOnly, "Report")
End Sub

Hope this code will be helpful...

License

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

About the Author

balaji2525


Member

Location: India India

Other popular VB.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 13 of 13 (Total in Forum: 13) (Refresh)FirstPrevNext
Generalwhat about israel ? PinmemberBEDEK334:37 6 Mar '10  
GeneralMy vote of 2 PinmemberVamsi Pulavarthi6:44 15 Dec '09  
GeneralMy vote of 1 PinmvpAshfield6:19 18 Nov '09  
Generalcalculator in vb Pinmembersura9452:53 16 Nov '09  
GeneralRe: calculator in vb Pinmemberbalaji25258:12 17 Nov '09  
GeneralMy vote of 1 PinmemberGriffinPeter9:21 13 Nov '09  
GeneralRe: My vote of 1 Pinmemberbalaji25258:03 17 Nov '09  
GeneralRe: My vote of 1 Pinmemberbalaji25258:06 17 Nov '09  
Generalpls help Pinmembermhn2171:25 9 Nov '09  
GeneralRe: pls help PinmemberGriffinPeter9:21 13 Nov '09  
GeneralMy vote of 1 PinmemberDennis Micheelsen21:10 8 Nov '09  
and works only to indian numbers
GeneralMy vote of 1 Pinmemberkalyankrishna17:30 8 Nov '09  
GeneralRe: My vote of 1 Pinmemberbalaji25258:08 17 Nov '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+PgUp/PgDown to switch pages.

PermaLink | Privacy | Terms of Use
Last Updated: 17 Nov 2009
Editor: Deeksha Shenoy
Copyright 2009 by balaji2525
Everything else Copyright © CodeProject, 1999-2010
Web09 | Advertise on the Code Project