Send Text (SMS) Message from Webpage for FREE
There is a growing use for connecting websites to mobile devices. One way is to use text messaging. To send any text message, websites use what is called an “SMS Gateway”. Your carrier (ATT, Sprint, Unicel . . . ) takes the information from this SMS gateway and sends it to your phone.
The following is piece of code that gives you (your web page) the ability to allow your website’s visitors to send data to their phone in the form of a text message (SMS).
You may use this code on your website free of charge. It will send a text message to your visitor’s phone using my SMS Gateway.
To see how it works, Click Here.
Insert the following form into your web page.
<form id="form1" name="form1" method="post" action="http://website-whisperer.com/tools/sms/">
<p>Send Message to Phone<br /></p>
<p>Message to Send:<input type="text" name="message" id="message" value="Your message Here" >
Carrier:
<select name="carrier" id="carrier" >
<option value="">--Select--</option>
<option value="Alaska Communications Systems">Alaska Communications Systems</option>
<option value="Alltel Wireless">Alltel Wireless</option>
<option value="AT&T Enterprise Paging">AT&T Enterprise Paging</option>
<option value="AT&T Global Smart Messaging Suite">AT&T Global Smart Messaging Suite</option>
<option value="AT&T Mobility (formerly Cingular)">AT&T Mobility (formerly Cingular)</option>
<option value="AT&T Wireless">AT&T Wireless</option>
<option value="Boost Mobile">Boost Mobile</option>
<option value="Cellular One (Dobson)">Cellular One (Dobson)</option>
<option value="Cellular South">Cellular South</option>
<option value="Centennial Wireless">Centennial Wireless</option>
<option value="Cincinnati Bell">Cincinnati Bell</option>
<option value="Cingular (GoPhone prepaid)">Cingular (GoPhone prepaid)</option>
<option value="Cingular (Postpaid)">Cingular (Postpaid)</option>
<option value="Cricket">Cricket</option>
<option value="General Communications Inc.">General Communications Inc.</option>
<option value="Golden State Cellular">Golden State Cellular</option>
<option value="MetroPCS">MetroPCS</option>
<option value="Nextel">Nextel</option>
<option value="Pioneer Cellular">Pioneer Cellular</option>
<option value="Pocket Wireless">Pocket Wireless</option>
<option value="Qwest Wireless">Qwest Wireless</option>
<option value="South Central Communications">South Central Communications</option>
<option value="Sprint (Nextel)">Sprint (Nextel)</option>
<option selected="selected" value="Sprint (PCS)">Sprint (PCS)</option>
<option value="Straight Talk">Straight Talk</option>
<option value="Syringa Wireless">Syringa Wireless</option>
<option value="T-Mobile">T-Mobile</option>
<option value="TracFone (prepaid)">TracFone (prepaid)</option>
<option value="Unicel">Unicel</option>
<option value="US Cellular">US Cellular</option>
<option value="Verizon">Verizon</option>
<option value="Viaero">Viaero</option>
<option value="Virgin Mobile">Virgin Mobile</option>
</select>
<br />
Mobile Number:<input name="mobile_number" type="text" id="mobile_number" size="20" value="218-234-5173" />
<br />
<input type="submit" name="loginSubmit" id="loginSubmit" value="SEND" />
</p>
</form>
It is important not to change anything but the value of of the message input text!
Happy texting!