Looking for an override template that can dynamically scale. Even tried following code, it’s not working as expected. If I try with an explicit rich HTML template then it’s ignoring the Style tag.
var message = {};
var text = response.message + ’
';
for (var i = 0; i < response.choices.length; i++) {
text = text.concat(
’ + response.choices[i] + ’ <
/u>
');
}
message.text = text;
print(JSON.stringify(message));
Hi @binit.bhosale,
Please let us know your complete requirement to help you further.
Regards,
Yoga Ramya
Hi @yogaramya.mendu,
Thank you for the reply.
When we use the email channel, the bot responds in a fixed email template. I want to modify that template for buttons and styled text.
is there a way we can do that?
I have attached a screenshot; it’s a bot’s response for a button-style anchor tag. Instead of showing a button, it’s showing a normal anchor tag.
Regards,
Vinit Bhosale!