We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Pronounce amount to pay

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
nevenfi
Posts: 11
Joined: Fri Nov 30, 2007 4:00 am

Pronounce amount to pay

Post by nevenfi »

Hi,

I'd like to have plumvoice pronounce an amount to pay. I've tried the following:

You will be asked to pay <say-as type="currency">10.00</say-as> euro.

But the amount is pronounced as 'ten point zero zero'.

How can this be improved?

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR code to pronounce amount to pay

Post by support »

Hi,

In order to implement this properly, you must include the appropriate language. Here's an example of IVR code that shows how you can implement euros for <say-as> type, currency:

Code: Select all

<?xml version="1.0" encoding="latin-1"?>
<vxml version="2.0">
  <form>
    <block>
      <prompt>
        <voice xml:lang="en_uk">
          Hello, you have <say-as type="currency">€10</say-as>
        </voice>
      </prompt>
    </block>
  </form>
</vxml>
Hope this helps.

Regards,
Plum Support

Post Reply