Dear Experts,
I want to develop a application that send sms on any mobile. if any one done this project then kindly give some important consideration for developing this application.

Best Regards,

Pardeep

Recommended Answers

All 5 Replies

I've been thinking about something like this myself, and I've been doing some research into the matter.
There are two options available to you (that I'm aware of).

1) Create an application that communicates with a cellphone connected to your computer.
2) Use an existing webservice API provided by any available SMS-Gateway provider. (Will most likely be a monthly fee or per sent message).

I'm no expert but this is what I use, coded for myself. All you need to do is enter the number to text and the carrier, your email and mail server and test it out. You can always add textboxes for the phone number and such, but like I said I coded this for myself. The only thing is you can only send texts, you can't recieve them.

Well here you go:

    Imports System
    Imports System.Net.Mail

    Public Class frmMain

    #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

    #Region "Methods"
    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("1234567890") & Trim("@txt.att.net") '' NUMBER TO TXT HERE
        mFrom = Trim("YOUR@EMAIL.COM")                  '' YOUR EMAIL TO SEND FROM
        mSubject = Trim(txtSubject.Text)                '' SUBJECT TEXTBOX
        mMailServer = Trim("smtp.google.com")           '' YOUR MAIL SERVER
        mMsg = Trim(txtMessage.Text)                    '' MESSAGE TEXTBOX

        ' 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("Your 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

    End Class

Nice code to send sms but in this code we have to use sms gatewaw api or not.??

No, this code works as if you're sending an email to a cell phone. Be careful though, many cell carriers have different domains for SMS and MMS.

To develop an application that can send SMS to any mobile, it is essential to integrate an SMS gateway. Also, for your application, security is of key importance. I suggest choosing Karix SMS API as they have developed one of the most secured Two-way messaging platform & are trusted among the most critical industries. Their API enables users to send and receive SMS in more than 200+ countries. You can refer to their documentation here: http://docs.karix.io/

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.