OpenVBX not sending sms during call flow...

2 replies
I am trying to setup a call flow using OPenVBX and during the flow an sms message needs to be sent to the caller if the option # is pressed (ie. Press 1 to receive an sms message with the info).

I have the flow set up, but the sms message part has never worked. I've tested it with different phones, different phone numbers from Twilio, tried different flows, and all to no avail.

I wondered if anyone here on the great WF can give me some advice on what might be wrong. It looks like it should be really simple to set up, but it's like I'm missing something, and I don't know what.

When I log into Twilio and click on Dev Tools I am getting a 12200 - Schema validation warning every time I have tried to have the message send. When I look this up it doesn't make sense to me. Perhaps someone knows the solution to this.

Your help would be much appreciated. Thanks!
#call #flow #openvbx #sending #sms
  • Profile picture of the author Bluewiremktg
    I think I found a clue (perhaps).

    When I view the twiML page from the call flow where the sms applet is located it shows this:
    <Response>
    <Message>Store Location: 123 Easy St.</Message>
    </Response>

    But when I view the docs on Twilio it shows to create an sms message like this:
    <Response>
    <Sms>Store Location: 123 Easy St.</Sms>
    </Response>

    In the first example is shows <Message></Message>
    But in the 2nd example it shows <Sms></Sms>
    Is this the issue? How do I update the twiml with the correct way of creating the message?

    Thanks for your time...
    {{ DiscussionBoard.errors[9492228].message }}
  • Profile picture of the author Bluewiremktg
    GUYS, I GOT IT!!!

    I just barely figured this out. Turns out it was the difference between <message> and <sms>.

    I changed the twiml.php file located here: ./plugins/sms/applets/sms

    FROM THIS:

    $response->message($sms);


    ...TO THIS:

    $response->sms($sms);

    IT WORKS NOW!

    I hope this helps anyone else looking to use the sms feature in a call flow...

    {{ DiscussionBoard.errors[9492399].message }}

Trending Topics