I have a number of Message Card emails that get sent by 13 people in total. These are Legacy Message Cards, I am now testing with a basic Adaptive Card. However, I can't send these Adaptive Cards to other people - only the same address .
I have created an entry on "Actionable Email Developer Dashboard" for Organisation and approved. I added two users as Sender Originators , added in functions to Target URLs - these were HTTP Power Automate Actions urls: https://prod-... I wasn't able to add Test Users even though it is a required field for Scope of submission - this stayed blank. Kept telling me I had to use valid email addresses. These were the same two addresses used for Originator.
After created I added the Originator ID into compose action as shown:
<script type="application/adaptivecard+json">{
"type": "AdaptiveCard",
"originator":"[My Provider ID was entered here]"
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Visit the Outlook Dev Portal",
"size": "large"
},
{
"type": "TextBlock",
"text": "Click **Learn More** to learn more about Actionable Messages!"
},
{
"type": "Input.Text",
"id": "feedbackText",
"placeholder": "Let us know what you think about Actionable Messages"
}
],
"actions": [
{
"type": "Action.Http",
"title": "Send Feedback",
"method": "POST",
"url": "https://...",
"body": "{{feedbackText.value}}"
},
{
"type": "Action.OpenUrl",
"title": "Learn More",
"url": "https://docs.microsoft.com/outlook/actionable-messages"
}
]
}
I only want to use one Originator Id. Has anyone any idea why this is not working?
Thanks.
John.