
Announcements
Hi all
i am using the below in send email v2 body
<script type="application/adaptivecard+json">
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Holiday Dates",
"wrap": true
},
{
"type": "Input.Date",
"label": "Holiday Start Date",
"id": "holstart"
},
{
"type": "Input.Date",
"label": "Holiday End Date",
"id": "holend"
}
],
"actions": [
{
"type": "Action.Http",
"title": "Submit",
"url": "",
"method": "POST",
"body": "{\n\"holstart\":\"{{holstart.value}}\",\n\"holend\":\"{{holend.value}}\",\n\"id\":\"{{id.value}}\"\n}",
"headers": [
{
"name": "Authorization",
"value": ""
},
{
"name": "Content-Type",
"value": "application/json"
}
]
}
]
}
</script>
However, i am getting the adaptive card in the header of the email but not in the body of the email as shown
how do i get the adaptive card to appear in the body of the email?