yoake/webroot/twilio/voice/entrypoint.tpl.xml

18 lines
602 B
XML
Raw Normal View History

2022-11-07 04:45:02 -06:00
{{ template "/twilio/head.tpl.xml" . }}
{{ $session := (get .Global "twilio_session") }}
{{ $num_visited := (get $session "num_visited") }}
2022-11-10 19:13:09 -06:00
{{ if not $num_visited }}{{ $num_visited = 0 }} {{ end }}
2022-11-07 04:45:02 -06:00
{{ set $session "num_visited" (math "argv(1) + 1" $num_visited) }}
2022-11-15 10:31:27 -06:00
2022-11-07 04:45:02 -06:00
<Response>
2022-11-15 10:31:27 -06:00
{{ if $src := (invoke "FormValue" .C "ForwardedFrom") }}
{{ if eq $src "+15122993080" }}
<Redirect method="POST">/twilio/voice/voicemail.xml></Redirect>
{{ end }}
{{ end }}
2022-11-07 04:45:02 -06:00
<Say voice="alice" language="en-US">This is Anne!</Say>
<Redirect method="POST">/twilio/voice/menu.xml</Redirect>
</Response>