ZVON > References > VoiceXML Reference
Element:transfer
Attributes: | bridge | cond | connecttimeout | dest | destexpr | expr | maxtime | name |
Parents: | form |
Children: | audio | catch | dtmf | enumerate | error | filled | grammar | help | noinput | nomatch | prompt | property | value |
Description:

Go to Standard

Examples:


<form name="transfer">
     <var name="mydur" expr="0"/>
     <block>
          <audio src="chopin12.wav"/>
     </block>
     <transfer name="mycall" dest="phone://18005551234" connecttimeout="30s" bridge="true">
          <filled>
               <assign name="mydur" expr="mycall$.duration"/>
               <if cond="mycall == 'busy'">
                    <prompt> Sorry, our customer support team is busy serving other customers. Please try again later. </prompt>
                    <elseif cond="mycall == 'noanswer'"/>
                    <prompt> Sorry, our customer support team's normal hours are 9 am to 7 pm Monday through Saturday. </prompt>
               </if>
          </filled>
     </transfer>
     <block>
          <submit namelist="mycall mydur" next="/cgi-bin/report"/>
     </block>
</form>