<... tts="">

 

Type

attribute

Elements

prompt

Data type

char[8000]

Values

alphanumeric

Description

The text to be spoken.  Overrides call campaign default behavior and speaks text specified by tts in instead of playing the WAV file in the call campaign.  

 

Example 1: Sending a call with TTS

<campaign menuid="1-1234" action="0">

   <prompts>

      <prompt promptid="2" tts="Web server 5 is down." />

   </prompts>

   <phonenumbers>

      <phonenumber number="8185550100" callid="123abc" callerid="8182238964" />

   </phonenumbers>

</campaign>

 

Example 2: Sending the same TTS message to multiple numbers

<campaign menuid="1-1234" action="0">

   <prompts>

      <prompt promptid="2" tts="Web server 5 is down." />

   </prompts>

   <phonenumbers>

      <phonenumber number="8185550100" callid="123abc" callerid="8182238964" />

      <phonenumber number="8185550110" callid="123abc" callerid="8182238964" />

      <phonenumber number="8185550120" callid="123abc" callerid="8182238964" />

   </phonenumbers>

</campaign>

 

Example 3: Sending a different TTS message to multiple numbers

<campaign menuid="1-1234" action="0">

   <phonenumbers> 

      <phonenumber number="8185550100" callid="123abc"> 

         <prompts> 

            <prompt promptid="2" tts="Web server 5 is down." />

         </prompts> 

      </phonenumber>

      <phonenumber number="8185550110" callid="123abc"> 

         <prompts> 

            <prompt promptid="2" tts="Web server 6 is down." />

         </prompts> 

      </phonenumber> 

   </phonenumbers> 

</campaign>

 

Example 4: Call Command with TTS

<prompt goto="7" tts="Your package is scheduled for delivery on Monday." />