
Announcements
Hello,
I have 2 main issues with my adaptive card:
1. Instead of text, question marks appear (The original language is Hebrew and RTL support is required)
2. An action button does not appear in Outlook
I have followed this article Adaptive Cards for Outlook Actionable Messages using Power Automate | Power Platform | D365 Demystified
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"rtl": true,
"body": [
{
"type": "TextBlock",
"text": "טקסט לבדיקה.",
"wrap": true,
"rtl": true,
"horizontalAlignment": "Left"
},
{
"type": "Input.Text",
"placeholder": "Placeholder text",
"id": "answer",
"isMultiline": true
}
],
"actions": [
{
"type": "Action.Http",
"title": "שלח",
"url": "https://prod-",
"method": "POST",
"body": "{\n\"responsesByUser:text\": \"{{answer.value}}\"\n}",
"headers": [
{
"name": "Authorization ",
"value": ""
},
{
"name": "Content-Type",
"value": "application/json"
}
],
"id": "ActionHttp"
}
],
"lang": "he-il"
}
I would appreciate your assistance