Playing back a sounds found after callee answers

Is there a way to playback a sound file after a callee has answered a call on an originate action.

Right now my extensions.conf looks like this. But. I doesn’t work. All I hear on my phone is two beeps,
then I disconnect.

[general]
static=yes
writeprotect=no
clearglobalvars=no

[default]
;Broadvoice Domestic Dialplan
exten => _1NXXNXXXXXX, 1, SetLanguage(en)
exten => _1NXXNXXXXXX, 2, SetMusicOnHold(default)
exten => _1NXXNXXXXXX, 3, dial(SIP/${EXTEN}@sip.inphonex.com,30)
exten => _1NXXNXXXXXX, 4, Answer
exten => _1NXXNXXXXXX, 5,Playback(auth-thankyou.gsm,skip)
exten => _1NXXNXXXXXX, 6, congestion()
exten => _1NXXNXXXXXX, 102, busy()

;Broadvoice International Dialplan
exten=_011.,1,dial(SIP/${EXTEN}@sip.inphonex.com,30)
exten=_011.,2,congestion() ; No answer, nothing
exten=_011.,102,busy() ; Busy

; Forward inbound calls to SIP Phone
exten => 6332227, 1 , Dial(SIP/CISCOPHONE,20,rt)

Thanks in advance.

Usually answer action go first. But if you have signaling like in E1 that say asterisk if call is busy,unavailable or answered you can do it.

You’re saying that Answer goes before Dial ??

Thanks navaismo. You were right on.