Send adaptive card through AWS email service (SES) #7666
Unanswered
saurabh-dwivedi
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to figure out if we can send adaptive cards in email using a third party layer like Amazon SES.
I am receiving the emails but the card is not visible in the email, but when I go to View source of the email I do the adaptive card content in the raw email data.
<script = type=3D"application/adaptivecard+json"> { "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.0", "originator": "", "body": [ { "size": "large", "text": "Hello Actionable message", "wrap": true, "type": "TextBlock" } ], "actions": [ { "type": "Action.InvokeAddInCommand", "title": "Open Actionable Messages Debugger", "addInId": "3d1408f6-afb3-4baf-aacd-55cd867bb0fa", "desktopCommandId": "amDebuggerOpenPaneButton" } ] } </script>If the card doesn't appear, install Actionable Me= ssages Debugger Outlook add-in to debug the issue.Email data -
I also tried sending adaptive card using https://amdesigner.azurewebsites.net/ which works as expected. Not sure if using a third party layer we need to add any setting to email content.
Beta Was this translation helpful? Give feedback.
All reactions