yoake/webroot/twilio/voice/submenu/connect-finish.tpl.xml

20 lines
691 B
XML
Raw Normal View History

2022-11-07 04:45:02 -06:00
{{ $status := (invoke "FormValue" .C "DialCallStatus")}}
<Response>
{{ if eq $status "completed" }}
<Hangup/>
{{ else if eq $status "failed"}}
<Say voice="alice" language="en-US">Sorry, there was an issue routing your call.</Say>
<Hangup/>
{{ else }}
<Say voice="alice" language="en-US">Please leave a message after the beep.</Say>
<Record
action="/twilio/voice/hangup.xml"
method="POST"
maxLength="60"
recordingStatusCallback="/twilio/voice/recording.html?type=voicemail"
recordingStatusCallbackMethod="POST"
playBeep="true"
/>
{{ end }}
</Response>