yoake/webroot/twilio/voice/submenu/connect-finish.tpl.xml
2022-11-07 05:45:02 -05:00

20 lines
No EOL
691 B
XML

{{ $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>