Get Started

Twilio SMS Quickstart

Let's walk through creating your first SMS application: Mobile Monkey.

Prerequisites

  1. You'll need a SMS-enabled Twilio phone number for receiving messages. You can use a free Twilio trial account and get your own dedicated phone number.

  2. You will also need a web host that lets you host web applications. There are lots of web hosting services that will host your application for free or for a few dollars a month.

Code

You can download the (minimal) code used in this example if you want:

Hello Monkey, SMS Edition

  1. Let's say your web server answers HTTP requests at companyfoo.com. Create a file called sms-hello-monkey.php in the document root. The URL http://companyfoo.com/sms-hello-monkey.php will be the SMS URL for your phone number.

  2. Browse over to the phone number configuration page in your account on the Twilio website. Click on the phone number you wish to use for the demo. If you don't have a phone number, you can purchase one using the "Buy a Number" button at the top of the page. Click the "Edit" link next to the phone number you would like to use. Next, check the "SMS" box, and paste the URL of the PHP file (e.g. http://companyfoo.com/sms-hello-monkey.php) in the "URL" box. Hit save and this phone number will now be setup to receive SMS messages.

  3. Copy the following code into the sms-hello-monkey.php file on your web server. The XML instructions tell Twilio to reply with an SMS that says "Hello, Mobile Monkey" whenever Twilio receives an SMS for your phone number.

    • quickstart/sms/sms-hello-monkey.php
      <?php
      	header("content-type: text/xml");
      	echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
      ?>
      <Response>
      	<Sms>Hello, Mobile Monkey</Sms>
      </Response>
          
  4. To test it, send an SMS message to your application's phone number. Twilio will receive the SMS, make a request to your URL, http://companyfoo.com/sms-hello-monkey.php in our case, and your server will respond with instructions to send a reply SMS message with the body "Hello, Mobile Monkey".

Hello Monkey Phone Message


Next: Replying to Messages »