Click here to Skip to main content
Click here to Skip to main content

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

By , 23 Aug 2006
 
Prize winner in Competition "VB.NET Jul 2006"

Sample Image - screenshot.jpg

Introduction

This article describes a simple way to send text messages to a cellular phone from within a VB.NET desktop application. The source code provided includes a relatively good list of carriers to simplify the task of connecting with a cell phone, and the task itself is really no more difficult than sending an email message through a desktop or web based application.

Getting Started

In order to begin, unzip the downloaded files and open the project provided. Within the project, you will find one main class: frmMain.vb. The main form is a Windows application form, and it contains a few controls necessary to capture the fields needed to properly form the message. These fields include:

  • Recipient’s phone number: Captures the recipient’s cellular telephone number (10 digit).
  • Recipient’s carrier: Captures the recipient’s carrier.
  • Sender’s email address: Captures the sender’s email address.
  • Sender’s email server: Captures the name of the sender’s email server.
  • Message subject line: Captures the message’s title or subject.
  • Message body: Captures the sender’s message content.

The application is simple, but could easily be improved by validating each of the required fields through the use of regular expressions or by at least validating that the text associated with each of the text boxes is not an empty string. To maintain the simplicity of the project, little in the way of error handling has been included.

The following figure (Figure 1) shows a properly configured collection of input fields in use:

Sample Image - 1.jpg

Figure 1: The Demonstration Application in Use

A quick review of the code will reveal that there is little going on there. The following imports were added to the top of the class:

Imports System
Imports System.Net.Mail

The System.Net.Mail import brings in the support necessary to transmit the messages generated using the application. Following the imports and the class declaration, there is a Declarations region identified, and within that region is a collection of private member variables; these private member variables are created in order to supply each of the required elements of the message.

#Region "Declarations"

    ' message elements
    Private mMailServer As String
    Private mTo As String
    Private mFrom As String
    Private mMsg As String
    Private mSubject As String

#End Region

At this point, the only thing left to do in code is to write the following three methods:

#Region "Methods"

Private Sub frmMain_Load(ByVal sender As System.Object, _
        ByVal e As System.EventArgs) Handles MyBase.Load

    ' set up the carriers list - this is a fair list,
    ' you may wish to research the topic and add others,
    ' it took a while to generate this list...
    cboCarrier.Items.Add("@itelemigcelular.com.br")
    cboCarrier.Items.Add("@message.alltel.com")
    cboCarrier.Items.Add("@message.pioneerenidcellular.com")
    cboCarrier.Items.Add("@messaging.cellone-sf.com")
    cboCarrier.Items.Add("@messaging.centurytel.net")
    cboCarrier.Items.Add("@messaging.sprintpcs.com")
    cboCarrier.Items.Add("@mobile.att.net")
    cboCarrier.Items.Add("@mobile.cell1se.com")
    cboCarrier.Items.Add("@mobile.celloneusa.com")
    cboCarrier.Items.Add("@mobile.dobson.net")
    cboCarrier.Items.Add("@mobile.mycingular.com")
    cboCarrier.Items.Add("@mobile.mycingular.net")
    cboCarrier.Items.Add("@mobile.surewest.com")
    cboCarrier.Items.Add("@msg.acsalaska.com")
    cboCarrier.Items.Add("@msg.clearnet.com")
    cboCarrier.Items.Add("@msg.mactel.com")
    cboCarrier.Items.Add("@msg.myvzw.com")
    cboCarrier.Items.Add("@msg.telus.com")
    cboCarrier.Items.Add("@mycellular.com")
    cboCarrier.Items.Add("@mycingular.com")
    cboCarrier.Items.Add("@mycingular.net")
    cboCarrier.Items.Add("@mycingular.textmsg.com")
    cboCarrier.Items.Add("@o2.net.br")
    cboCarrier.Items.Add("@ondefor.com")
    cboCarrier.Items.Add("@pcs.rogers.com")
    cboCarrier.Items.Add("@personal-net.com.ar")
    cboCarrier.Items.Add("@personal.net.py")
    cboCarrier.Items.Add("@portafree.com")
    cboCarrier.Items.Add("@qwest.com")
    cboCarrier.Items.Add("@qwestmp.com")
    cboCarrier.Items.Add("@sbcemail.com")
    cboCarrier.Items.Add("@sms.bluecell.com")
    cboCarrier.Items.Add("@sms.cwjamaica.com")
    cboCarrier.Items.Add("@sms.edgewireless.com")
    cboCarrier.Items.Add("@sms.hickorytech.com")
    cboCarrier.Items.Add("@sms.net.nz")
    cboCarrier.Items.Add("@sms.pscel.com")
    cboCarrier.Items.Add("@smsc.vzpacifica.net")
    cboCarrier.Items.Add("@speedmemo.com")
    cboCarrier.Items.Add("@suncom1.com")
    cboCarrier.Items.Add("@sungram.com")
    cboCarrier.Items.Add("@telesurf.com.py")
    cboCarrier.Items.Add("@teletexto.rcp.net.pe")
    cboCarrier.Items.Add("@text.houstoncellular.net")
    cboCarrier.Items.Add("@text.telus.com")
    cboCarrier.Items.Add("@timnet.com")
    cboCarrier.Items.Add("@timnet.com.br")
    cboCarrier.Items.Add("@tms.suncom.com")
    cboCarrier.Items.Add("@tmomail.net")
    cboCarrier.Items.Add("@tsttmobile.co.tt")
    cboCarrier.Items.Add("@txt.bellmobility.ca")
    cboCarrier.Items.Add("@typetalk.ruralcellular.com")
    cboCarrier.Items.Add("@unistar.unifon.com.ar")
    cboCarrier.Items.Add("@uscc.textmsg.com")
    cboCarrier.Items.Add("@voicestream.net")
    cboCarrier.Items.Add("@vtext.com")
    cboCarrier.Items.Add("@wireless.bellsouth.com")

End Sub

Private Sub btnSend_Click(ByVal sender As System.Object, _
        ByVal e As System.EventArgs) Handles btnSend.Click

' Collect user input from the form and stow content into
' the objects member variables

    mTo = Trim(txtPhoneNumber.Text) & _
        Trim(cboCarrier.SelectedItem.ToString())
    mFrom = Trim(txtSender.Text)
    mSubject = Trim(txtSubject.Text)
    mMailServer = Trim(txtMailServer.Text)
    mMsg = Trim(txtMessage.Text)

' Within a try catch, format and send the message to
' the recipient. Catch and handle any errors.
    Try

        Dim message As New MailMessage(mFrom, mTo, mSubject, mMsg)
        Dim mySmtpClient As New SmtpClient(mMailServer)
        mySmtpClient.UseDefaultCredentials = True
        mySmtpClient.Send(message)

        MessageBox.Show("The mail message has been sent to " & _
                        message.To.ToString(), "Mail", _
                        MessageBoxButtons.OK, _
                        MessageBoxIcon.Information)

    Catch ex As FormatException

        MessageBox.Show(ex.StackTrace, ex.Message, _
                        MessageBoxButtons.OK, _
                        MessageBoxIcon.Error)

    Catch ex As SmtpException

        MessageBox.Show(ex.StackTrace, ex.Message, _
                        MessageBoxButtons.OK, _
                        MessageBoxIcon.Error)

    Catch ex As Exception

        MessageBox.Show(ex.StackTrace, ex.Message, _
                        MessageBoxButtons.OK, _
                        MessageBoxIcon.Error)
    End Try
End Sub

Private Sub btnExit_Click(ByVal sender As System.Object, _
        ByVal e As System.EventArgs) Handles btnExit.Click

' Upon user’s request, close the application
    Application.Exit()

End Sub
#End Region

At this point, the application should be complete. You may wish to build the solution and test it. Even though this example was intended to be simple, the overall concept may be used within an application to do some seemingly complex jobs. For example, if you were tasked with writing an application that monitored some sort of trend information such as a daily stock price, and were to alert a group of end users whenever the stock price exceeded some predetermined, agreed upon value, you could do something such as looping through a collection of users subscribing to the stock price monitoring service and direct a text message to each of these users indicating that the watched stock had surpassed the threshold value.

Also, please note that, whilst it does cost you a dime to send a message to a cell phone in this manner, it may well cost the recipient something to receive it. Bearing that in mind, as you test your version of the code, be mindful of any expenses you may be generating for yourself (if, for example, you are sending messages to yourself) or another person.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

salysle
Software Developer (Senior)
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionPDA code for sending text messagememberjustoriko13 May '13 - 19:40 
QuestionNice job.memberSir Mari05 May '13 - 5:30 
QuestionSending mailmemberDOZDOZ16 Apr '13 - 5:06 
QuestionSendng mailmemberDOZDOZ16 Apr '13 - 4:59 
Questionsend message via mobile though desktop application c# .netmemberAditya Malviya17 Dec '12 - 1:13 
GeneralMy vote of 4memberParthi Bun17 Oct '12 - 0:40 
QuestionAre there changes that need to be made in the codememberepodemik28 Jun '12 - 15:36 
QuestionDoubt in programmemberArunmozjhidevan19 Jun '12 - 6:18 
Hi,
 
Please Kindly guide me india mobile carreier id...
QuestionhelpmemberMember 87011386 Mar '12 - 3:59 
QuestionHimemberomo711724 Feb '12 - 8:30 
Questionmobile carrier listmemberGerald Musoke15 Nov '11 - 4:26 
Questionpls answer this question..membershieake9 Jan '11 - 18:20 
Questionfailure sendingmemberanupama9620105 Jan '11 - 3:01 
AnswerRe: failure sendingmemberbasheer.j12 Mar '11 - 16:02 
GeneralRegarding free web servicesmemberAbhijeetCSL21 Apr '10 - 0:21 
GeneralRe: Regarding free web servicesmemberPatilVL7 Sep '10 - 17:12 
GeneralGood ArticlememberSunil Scaria8 Apr '10 - 1:40 
GeneralNice ConceptmemberArun Jacob6 Apr '10 - 1:30 
GeneralI WANT TO MOBILE CARRIER IN INDIAmemberNETKANNNAN6 Mar '10 - 18:56 
GeneralRe: I WANT TO MOBILE CARRIER IN INDIAmemberPatilVL7 Sep '10 - 17:12 
Generalnot receiving msg to mobmemberCoolV16 Feb '10 - 23:17 
GeneralExtracting email id from web pagememberrd21216 Feb '10 - 20:24 
GeneralThis is it...memberowen1025057 Jun '09 - 19:26 
GeneralC#memberjammmie9999 Apr '09 - 0:21 
Generalheymemberfarmalik27 Mar '09 - 8:03 
QuestionMessage sent successfully,but i am not receive in my mobilememberdatatechprojects24 Mar '09 - 22:39 
GeneralFailure sending mailmemberdatatechprojects16 Mar '09 - 19:51 
GeneralRe: Failure sending mailmemberobicauka27 Apr '09 - 7:33 
QuestionHow to programming on mobile phone ?memberAnatha15 Feb '09 - 16:38 
Generalmobile carriers of PakistanmemberOsama10015 Oct '08 - 22:10 
GeneralI want the mobile carrier for Nigeriamemberchikezie25 Nov '07 - 23:40 
Generalnonetryingmembercolliebee12 Oct '07 - 15:13 
GeneralGood ListmemberNorberto Olazabal9 Oct '07 - 3:35 
QuestionHow about the list of carriers in the Philippines?memberANDY@AVGTECH4 Oct '07 - 18:21 
QuestionHow do we determine the mail server?memberRGmail6 Jul '07 - 18:27 
GeneralSMS Gateways should be bettermemberVasudevan Deepak Kumar19 Jun '07 - 23:03 
GeneralRe: SMS Gateways should be bettermemberlinhjob29 Oct '10 - 2:24 
QuestionInstant Messengermemberchse72026 Apr '07 - 7:02 
AnswerRe: Instant MessengermemberVasudevan Deepak Kumar19 Jun '07 - 23:05 
GeneralRe: Instant Messengermemberchse72023 Jun '07 - 1:55 
GeneralDo you have the providers of India.memberalbert arul prakash29 Mar '07 - 0:11 
GeneralRe: Do you have the providers of India.membersalysle29 Mar '07 - 9:14 
GeneralRe: Do you have the providers of India.memberANDY@AVGTECH4 Oct '07 - 18:16 
GeneralRe: Do you have the providers of India.memberVasudevan Deepak Kumar19 Jun '07 - 23:01 
Generalsi ijemembersabanali7 Mar '07 - 2:50 
QuestionAbout the carrier listmemberdashing8415 Nov '06 - 23:28 
GeneralTeleFlipmemberDFU235 Oct '06 - 10:17 
GeneralRe: TeleFlipmembersalysle5 Oct '06 - 11:15 
GeneralAdaptablememberdavidmknoble4 Oct '06 - 9:14 
GeneralRe: Adaptablemembersalysle4 Oct '06 - 16:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 23 Aug 2006
Article Copyright 2006 by salysle
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid