Results 1 to 8 of 8

Thread: send a sms message

  1. #1
    Join Date
    Nov 2004
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Unhappy send a sms message

    hi,
    how can i send a sms message to a cell-phone by my site?
    I need some component in my server or what?

    thank you!

  2. #2
    Join Date
    Aug 2004
    Location
    Brighton
    Posts
    1,563
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Usually, you need to own a mobile phone company.

    www.o2.co.uk lets me send 10 free texts a month as they are my operator.

    cr3ative
    A retired member, drop me a line through my site if you'd like to find me!
    cr3ative media | read the stickies

  3. #3
    Join Date
    Jan 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Actually, nowadays, this is incorrect.

    If you are still interested in sending SMS from your site, we can offer this service to you.

    We operate an SMS gateway although there are many available.

    If you would like more information, please visit our website at http://www.TextOver.com.

    We also provide coding examples to make the integration process easier for you.

    Thank you
    Dan Journo
    TextOver
    Kesher Communications.com

  4. #4
    Join Date
    Jul 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sending an sms message from your site can be done in many ways. The easiest way is via email. Use an emailing lib and some code and your done. You would need to place the receivers information in the to field, for example 99988877777@gateway.com. Hope that helped.

    World Guru
    Administrator
    http://www.wetextfree.com

  5. #5
    Join Date
    Aug 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Sending SMS From ASP Code

    Sending of SMS Messages from ASP Code now i have managed to do this myself is very simple.

    You Need 2 Things:

    1. An SMS Gateway Provider

    there are hundreds of these on the internet these days, and they can offer bulk sms services and an api for you to link to.

    2. A Secure server that you can fire your script from, or some sort of coding that will check that your sending the request and not a hacker. that way you dont end up with hundreds of credits going walkies.

    after you have them in place you need to do this:

    Code:
    'If the session id matches the one that was sent over in the call to the function we can send the sms ok.
    if zSID = session.sid then
    		set objHttp = Server.CreateObject("Microsoft.XMLHTTP")
    		objHttp.open "GET", "http://sms.gateway.com/SMSSend?" & zSMSAPI, false
    		objHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
    		objHttp.Send
    			SendSMS = objHTTP.responseText
    		Set objHTTP = nothing
    else
    SendSMS = "Invalid Session Status Unable To Send"
    end if
    The above code uses microsofts xmlhttp object to send a request in the background without the user having to submit a form, can be helpful for support ticket systems. although if you find the right provider you can create a form that will send the request direct to their SENDSMS script.

    Hope this is helpful for you as this was new to me last nite

  6. #6
    Join Date
    Aug 2007
    Location
    Kansas, USA
    Posts
    36
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    If you just need to send an SMS message to your own phone or people you know, you can just figure out who the provider is and use the free SMTP gateway to send the message.

    For example, I have AT&T as my carrier, so I can send a message to my own phone using AT&T's gateway.

    If you want to be able to send to phones where you don't know the carrier, then you need a generic gateway that can figure that out for you (typically costs money).

    Examples:

    AT&T: AreaCode+Mobile@mobile.att.net

    Verizon: AreaCode+Mobile@vtext.com

    Nextel: AreaCode+Mobile@page.nextel.com

    T-Mobile: AreaCode+Mobile@tmomail.com

    Sprint: AreaCode+Mobile@messaging.sprintpcs.com

    Cingular: 1+AreaCode+Mobile@mobile.mycingular.com
    Last edited by DigitalBard; 08-21-2008 at 04:38 PM. Reason: update

  7. #7
    Join Date
    Aug 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up cheapest wow cd key

    hello.Welcome to cheap wow cd key.Buy War cd key.WoW CD Key US $18.25 Warhammer CD Key $44.90World of Warcraft CD Key EU $14.40 Warhammer Online CD Key $44.90

  8. #8
    Join Date
    Nov 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Send a sms message

    Go and register in this website way2sms.com. then, you can send sms to any mobile. Otherwise, go to yahoo messenger and send sms.
    ----------------------------------------------------------
    jillcatrina

    Email marketing

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •