Send Text Message to Mobile from Website

Discussion in 'Programming' started by Amsterdam, Feb 23, 2010.

  1. #1
    Can anybody tell me what the best way to send a text message from Website would be? For example; if somebody was to place an order on my site then I would receive the details by text message.

    Any advice gratefully received.

    T
     
    Amsterdam, Feb 23, 2010 IP
  2. darkblade

    darkblade Peon

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Best way is to send through email via php. You sms address is basically an email address. Ex. if you number was 123456789 and you carrier is att. Then you can actually send an email 123456789 @ txt. att. net (added spaces to prevent linking) and you should be able to receive it on your phone. But each carrier is different.

    Hope that helps.
     
    Last edited: Feb 23, 2010
    darkblade, Feb 23, 2010 IP
    Amsterdam likes this.
  3. Amsterdam

    Amsterdam Well-Known Member

    Messages:
    361
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    128
    #3
    Thanks darkblade, sounds promising. Do you know if this works with UK networks?
     
    Amsterdam, Feb 23, 2010 IP
  4. darkblade

    darkblade Peon

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I am pretty sure it depends on the network/carrier only, not location. Check with your carrier for the address.:)
     
    darkblade, Feb 23, 2010 IP
  5. danx10

    danx10 Peon

    Messages:
    1,179
    Likes Received:
    44
    Best Answers:
    2
    Trophy Points:
    0
    #5
    No this method doesnt.
     
    danx10, Feb 23, 2010 IP
  6. darkblade

    darkblade Peon

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    darkblade, Feb 23, 2010 IP
  7. SMS-Affiliates

    SMS-Affiliates Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    'Free' email-to-SMS only works on US networks, not on mobile networks in the UK.

    There is a 'trick' way you can do it for free, but it needs some programming knowledge.

    Basically, set up 2 separate Twitter user accounts. Then sign into 1 account, visit the other account homepage and 'follow' that user. Make sure your mobile phone is configured for account 1 to receive 'Tweets'.

    Now, write a php/perl script that takes the data submitted in your web page form and sends it out as a Direct Message from Twitter account 2 to Twitter account 1. You can use the Twitter APIs to integrate this function into your website. Since you're following Twitter account 2, Twitter account 1 can send you free text messages!

    This trick will only work in those countries where Twitter offers free SMS of Tweets. The latest list of mobile networks is on their website.

    I can't imagine that Twitter will thank me for this trick

    Mickey
     
    SMS-Affiliates, Feb 24, 2010 IP
  8. Amsterdam

    Amsterdam Well-Known Member

    Messages:
    361
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    128
    #8
    Thanks for the Twitter trick Mickey, but it wouldn't be suitable for my purposes. Looks like I'll have to investigate paid options.

    T
     
    Amsterdam, Feb 25, 2010 IP
  9. Tomastamm

    Tomastamm Well-Known Member

    Messages:
    448
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    110
    #9
    Sms Gateway Service, API for sending via HTTP, Free Trial, Easy setup and usage. Send and Receive SMS.
    If you are interested please open an account with our service http://www.2-waysms.com
     
    Tomastamm, Mar 29, 2010 IP
  10. NeoCambell

    NeoCambell Peon

    Messages:
    456
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #10
    First see whether your carrier (phone company) is listed here.
    If it is listed, then we can write a small php script to send an email to the carrier which will then be sent to you as a SMS.

    Read, How to make an email to SMS gateway using php. This is a very good web site -> sms system.
     
    NeoCambell, Mar 29, 2010 IP
  11. abstractworld

    abstractworld Peon

    Messages:
    35
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    You will have to use some SMS Gateway. They will provide you with an API to send/receive SMS msgs using php or similar langs.
    So setting up on your site gets pretty simple. In your case you can even use the sample code by providers, as you need very basic setup of it. On each success of order, you just need to call those functions which will send you the SMS.
     
    abstractworld, Mar 30, 2010 IP