Skip to content

Instantly share code, notes, and snippets.

@ReaperSecurity
ReaperSecurity / private.xml
Created March 3, 2026 20:15
Donna Voice Line - Private Line Message
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="Polly.Joanna">Sorry, this is a private line. Goodbye.</Say>
<Hangup/>
</Response>
@ReaperSecurity
ReaperSecurity / greeting.xml
Created March 3, 2026 20:15
Donna Voice Line - Answer and Record TwiML
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Pause length="1"/>
<Say voice="Polly.Joanna">Hey Chris. What do you need?</Say>
<Record maxLength="60" timeout="3" trim="trim-silence"
action="https://gist.githubusercontent.com/ReaperSecurity/9e94e25379df641146abd0be59b5f2b0/raw/holding.xml" method="GET"/>
<Say voice="Polly.Joanna">I didn't catch anything. Call back when you're ready.</Say>
</Response>
@ReaperSecurity
ReaperSecurity / holding.xml
Created March 3, 2026 20:14
Donna Voice Line - Hold While Processing TwiML
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="Polly.Joanna">Hmm, let me look into that.</Say>
<Pause length="45"/>
<Say voice="Polly.Joanna">Still working on it.</Say>
<Pause length="45"/>
<Say voice="Polly.Joanna">Sorry, this is taking longer than usual. Try calling back.</Say>
<Hangup/>
</Response>