I want to put html into a modal. The showModal action has a ‘slots’ key, so I tried like this:
"showTheMessage": [{
"action": "showModal",
"options": {
"body": "",
"icon": "info",
"overlayTheme": "light",
"slots": [{
"html": "Need help?<br/> For technical support, contact <a href=\"mailto:me@you.com\">me@you.com</a><br/>For other inquiries, contact <a href=\"mailto:{{app.info.email}}\">{{app.info.email}}</a>",
"slot": "body"
}],
"text": ""
}
}]
…but either the slot name is wrong or something else is… it does not output on the modal.