Page 1 of 1

Pronounce amount to pay

Posted: Wed Jan 23, 2008 7:32 am
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?

IVR code to pronounce amount to pay

Posted: Wed Jan 23, 2008 11:33 am
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