Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Twilio Cookbook: Second Edition

You're reading from   Twilio Cookbook: Second Edition Over 70 easy-to-follow recipes, from exploring the key features of Twilio to building advanced telephony apps

Arrow left icon
Product type Paperback
Published in Mar 2014
Publisher
ISBN-13 9781783550654
Length 334 pages
Edition Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Roger Stringer Roger Stringer
Author Profile Icon Roger Stringer
Roger Stringer
Arrow right icon
View More author details
Toc

Table of Contents (20) Chapters Close

Twilio Cookbook Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Into the Frying Pan 2. Now We're Cooking FREE CHAPTER 3. Conducting Surveys via SMS 4. Building a Conference Calling System 5. Combining Twilio with Other APIs 6. Sending and Receiving SMS Messages 7. Building a Reminder System 8. Building an IVR System 9. Building Your Own PBX 10. Digging into OpenVBX 11. Sending and Receiving Picture Messages 12. Call Queuing 13. Working with Twilio Client Index

Setting up IVRs


In this first section, we will set up our basic IVR with a simple phone tree.

When a caller calls in, we'll give them a list of options. Pressing 1 will give them the store hours, and pressing 2 will prompt them to enter the extension of an agent.

Getting ready

The complete source code for this recipe can be found in the Chapter8/Recipe1/ folder

How to do it…

Let's set up the basic IVR system. The basic system will consist of a simple company directory, which would display the incoming calls.

When a user calls in, it will greet them and then prompt them to make a choice.

  1. Upload config.php on your website and make sure your phone tree variables are set:

    <?php
      $directory = array(
        '1'=> array(
          'phone'=>'415-555-2222',
          'firstname' => 'Joe',
          'lastname' => 'Doe'
        ),
        '2'=> array(
          'phone'=>'415-555-3333',
          'firstname' => 'Eric',
          'lastname' => 'Anderson'
        ),
        '3'=> array(
          'phone'=>'415-555-4444',...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime