I am trying to add SSML text using Say-verbs in Twilio Runtime functions.
let twiml = new Twilio.twiml.VoiceResponse();
twiml.say('<prosody rate="-15%">Hello World</prosody>');
Above code results in encoded Text when rendered. Is there a way to have Twilio accept the text without encoding?
<prosody rate='-15%'>Hello World</prosody>
I am aware of the ssml methods in the Say object, however they are rather cumbersome, and it would be easier to just write the tags as part of the Say-String.