Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Twilo evangelist here.</p> <p>You can make as many queues as you want, so in your case you can just create three different Queues (one named "Collections", one named "Sales" and one named "InsideSales"), and then based on the option that the caller just <code>[&lt;Enqueue&gt;][1]</code> the caller into the correct queue.</p> <p>To start you need to create a phone menu. The <a href="https://www.twilio.com/docs/howto/phonemenu" rel="nofollow">Phone Menu HowTo</a> shows you how to use the PHP helper libraries to create a basic menu using the <code>[&lt;Say&gt;][3]</code> and <code>[&lt;Gather&gt;][4]</code> verbs. It also shows how to process the callers menu selection using Gathers <a href="https://www.twilio.com/docs/api/twiml/gather#attributes-action" rel="nofollow"><em>action</em></a> parameter.</p> <p>For your application, once the user selects a menu item you want to place them into a call Queue. The <a href="https://www.twilio.com/docs/howto/callqueue" rel="nofollow">Call Queue HowTo</a> show you how to use the PHP helper libraries to send a caller to a Queue using the <code>&lt;Enqueue&gt;</code> verb.</p> <p>In the Call Queue HowTo, notice that when using the PHP helper library you pass a string into the <a href="http://twilio-php.readthedocs.org/en/latest/usage/twiml.html?highlight=enqueue#enqueue" rel="nofollow">Enqueue function</a>. This is the name of the queue I want to send the caller to. If a Queue with that name does not yet exist, Twilio will automatically create it for you, otherwise that call is simple added to the existing queue.</p> <p>Hope that helps.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload