I'm attempting to use Twiml to setup up the following workflow. Can anyone provide clarification on the parts I'm missing?
This is what I want to achieve:
- Someone calls my Twilio number
- Dial up to 10 numbers simultaneously
- If no one picks up send the user to voicemail
- Send voicemail email to multiple email addresses
If the call is connected
- Whisper message for receiver
- Record the phone call
- Track city & state of caller
- Send SMS to me when someone calls
This is what I have so far:
<Response>
<Play> URL of mp3 greeting optional </Play>
<Dial record="true">
<Number>
+18589876543
</Number>
<Number>
+4151234567
</Number>
<Number>
+6197654321
</Number>
<Number>
+18589876543
</Number>
<Number>
+18589876543
</Number>
</Dial>
<Sms to="+6197654321">
Congrats! You have just received a phone call on your Texas phone line
</Sms>
</Response>
Any help at all is appreciated.