I have a question about Adaptive Cards and Attachments of saved emails. Since Adatpive Cards shows that an attachment is added, it is also in SP. However, after Adatpive Cards the email cannot be opened or downloaded. it's about .msg . Does anyone know why?
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "See first attachment",
"url": "@{variables('AttachmentsURL')?[0]}"
}
],
"isVisible": "@{greater(length(variables('AttachmentsURL')), 0)}"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "See second attachment",
"url": "@{variables('AttachmentsURL')?[1]}"
}
],
"isVisible": "@{greater(length(variables('AttachmentsURL')), 1)}"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "See third attachment",
"url": "@{variables('AttachmentsURL')?[2]}"
}
],
"isVisible": "@{greater(length(variables('AttachmentsURL')), 2)}"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "See fourth attachment",
"url": "@{variables('AttachmentsURL')?[3]}"
}
],
"isVisible": "@{greater(length(variables('AttachmentsURL')), 3)}"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "See fifth attachment",
"url": "@{variables('AttachmentsURL')?[4]}"
}
],
"isVisible": "@{greater(length(variables('AttachmentsURL')), 4)}"
},

Report
All responses (
Answers (