You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all SSML tags are malformed. They are either capitalized for example the proper <emphasis> is instead generated as <Emphasis> or <say-as> is generated as <SayAs>. These generate an error code of 12200 XML Validation warning and the call fails.
Steps to Reproduce
Create a twiml with any function that is designed to inject an SSML tag.
Code Snippet
say:=&twiml.VoiceSay{}
say.InnerElements= []twiml.Element{
&twiml.VoiceP{Words: "This will generate the wrong SSML"}
}
hangup:=&twiml.VoiceHangup{}
return []twiml.Element{say, hangup}
Technical details:
twilio-go version: All versions since Oct 2, 2022
go version: All versions
The text was updated successfully, but these errors were encountered:
Issue Summary
Currently all SSML tags are malformed. They are either capitalized for example the proper
<emphasis>
is instead generated as<Emphasis>
or<say-as>
is generated as<SayAs>
. These generate an error code of12200
XML Validation warning and the call fails.Steps to Reproduce
Create a twiml with any function that is designed to inject an SSML tag.
Code Snippet
Technical details:
The text was updated successfully, but these errors were encountered: