web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Power Automate Approva...
Power Automate
Suggested Answer

Power Automate Approval Email No Longer Shows Actionable Message and redirecting to Portal

(1) ShareShare
ReportReport
Posted on by 10

Hi everyone,

I’m currently using Power Automate to send approval emails using the "Start and wait for an approval" action. Previously, recipients would receive the approval email in Outlook with rich actionable features, including inline Approve/Reject buttons and a comment box — all within the email itself.

However, lately, the same approval emails are only showing basic HTML content with buttons that redirect to the Power Automate portal, and there is no inline comment box. Nothing in the flow has changed.

Questions:

  1. What could cause the actionable approval card to stop rendering for some or all users?

  2. How can I ensure all users consistently receive the rich actionable email with inline actions and comment input.

  3. I want all user to use the older version of approvals how can i configured it if possible.



  4.  

Thanks,

Anant

I have the same question (0)
  • trice602 Profile Picture
    16,048 Super User 2026 Season 1 on at
     
    If you could share the action configuration for the start and wait for an approval, that would be helpful.  Otherwise, you may get a lot of guesses.
     

    ------------------------------------------------

     

     

    ⭐ If this was helpful, please like and check the box below "Does this answer your question" to help others find this too!

     

     

    Always glad to help! 💯💯💯💯💯

     

    Tom

     

    Follow me on LinkedIn - Thomas Rice, PMP | LinkedIn

  • yashag2255 Profile Picture
    24,769 Super User 2024 Season 1 on at
     
    This could most likely happen due to an organization policy or tenant level policy implemented by your IT admin to restrict actionable messages/ http links in emails. You may want to check with them regarding any new policy updates implemented. 
     
    Hope this Helps!
     
    If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
  • Suggested answer
    Riyaz_riz11 Profile Picture
    4,048 Super User 2026 Season 1 on at
    Hi,
     

    Based on my research and experience, this is a common issue that many organizations are facing. Here's a comprehensive solution to address the actionable approval card problems:

    Root Causes of the Problem:


    1. Microsoft 365 Admin Policy Changes: Actionable messages might be disabled at the tenant level Issues with flow approval emails in Outlook - Power Automate | Microsoft Learn

    2. Outlook Version Issues: Users aren't using a supported version of Office 365, or mail for the specific account is being redirected to an on-premises mail server Issues with flow approval emails in Outlook - Power Automate | Microsoft Learn

    3. Security Policy Updates: Recent security policy changes may have affected actionable message rendering

    4. Exchange Online Configuration: Mail flow rules or security settings blocking actionable messages

    5.  

    Solution 1: Check and Enable Actionable Messages at Tenant Level

    Admin Center Configuration:


    1. Go to Microsoft 365 Admin Center

    2. Navigate to: Settings → Org Settings → Mail flow

    3. Check: "Actionable Messages" settings

    4. Ensure: "Allow actionable messages" is enabled

    5. Verify: No restrictive policies are blocking them


    6.  

    PowerShell Commands (for admins):

    powershell
    # Connect to Exchange Online
    Connect-ExchangeOnline
    
    # Check current actionable message settings
    Get-OrganizationConfig | Select-Object -Property *Actionable*
    
    # Enable actionable messages if disabled
    Set-OrganizationConfig -ConnectorsActionableMessagesEnabled $true
     

    Solution 2: User-Level Outlook Settings

    For each affected user:


    1. Outlook Desktop:

      • File → Options → Trust Center → Trust Center Settings

      • Email Security → Check "Enable actionable messages"

      • Add-ins → Manage COM Add-ins → Ensure no conflicting add-ins

      •  

    2. Outlook Web App:

      • Settings (gear icon) → View all Outlook settings

      • General → Privacy and data → Enable "Actionable messages"

    Solution 3: Verify Prerequisites

    Check these requirements for all users:


    1. Office 365 Subscription: Business Premium or higher

    2. Outlook Version:

      • Outlook 2016 build 16.0.7967.2073 or later

      • Outlook on the web

      • Outlook mobile 

      •  
    3. Exchange Online: Not redirected to on-premises server

    Solution 4: Alternative Approval Implementation

    Use Adaptive Cards with "Send an email" action:

    json
    {
      "type": "AdaptiveCard",
      "version": "1.0",
      "body": [
        {
          "type": "TextBlock",
          "text": "Approval Request",
          "size": "Large",
          "weight": "Bolder"
        },
        {
          "type": "TextBlock",
          "text": "Please review and approve this request",
          "wrap": true
        },
        {
          "type": "Input.Text",
          "id": "comment",
          "placeholder": "Add your comments here..."
        }
      ],
      "actions": [
        {
          "type": "Action.Http",
          "title": "Approve",
          "method": "POST",
          "url": "https://your-flow-endpoint.com/approve",
          "body": {
            "action": "approve",
            "comment": "{{comment.value}}"
          }
        },
        {
          "type": "Action.Http",
          "title": "Reject",
          "method": "POST",
          "url": "https://your-flow-endpoint.com/reject",
          "body": {
            "action": "reject",
            "comment": "{{comment.value}}"
          }
        }
      ]
    }
     

    Solution 5: Hybrid Approach - Teams + Email

    Configure both Teams and Email approvals:


    1. Use: "Start and wait for an approval" action

    2. Set: "Approval type" to "Everyone must approve"

    3. Configure: Send to both email and Teams

    4. Users can respond: From either Teams or email (whichever works)

    5.  

    Solution 6: Custom Approval Solution

    Create a custom approval using HTTP requests:


    1. Replace: "Start and wait for an approval"

    2. Use: "Send an email (V2)" with custom HTML

    3. Include: Links to custom approval page or HTTP endpoints

    4. Handle: Responses via HTTP triggers

    5.  

    Example HTML Email Template:

    html
    <div style="font-family: Arial, sans-serif; max-width: 600px;">
      <h2>Approval Required</h2>
      <p>Request Details: [Your content here]</p>
      
      <div style="margin: 20px 0;">
        <textarea placeholder="Comments..." style="width: 100%; height: 100px;"></textarea>
      </div>
      
      <div style="text-align: center;">
        <a href="https://your-approval-endpoint.com/approve?id=123" 
           style="background-color: #28a745; color: white; padding: 10px 20px; text-decoration: none; margin: 5px;">
           Approve
        </a>
        <a href="https://your-approval-endpoint.com/reject?id=123" 
           style="background-color: #dc3545; color: white; padding: 10px 20px; text-decoration: none; margin: 5px;">
           Reject
        </a>
      </div>
    </div>
     

    Solution 7: Troubleshooting Steps

    For users experiencing issues:


    1. Clear Outlook Cache:

      • Close Outlook

      • Delete cache files in %localappdata%\Microsoft\Outlook

      • Restart Outlook


      •  

    2. Update Outlook:

      • File → Office Account → Update Options → Update Now


      •  

    3. Check Email Rules:

      • Ensure no rules are moving approval emails to different folders


      •  

    4. Test with Different Clients:

      • Try Outlook Web App

      • Try Outlook Mobile

      • Compare behavior across clients 

      •  
     

    Solution 8: Monitor and Test

    Create a test flow:


    1. Simple approval flow with minimal content

    2. Send to test users with different Outlook configurations

    3. Document which users receive actionable vs HTML emails

    4. Adjust configuration based on results
     
    If I have answered your question, please mark it as the preferred solution ✅ . If you like my response, please give it a Thumbs Up 👍.
    Regards,
    Riyaz

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
Haque Profile Picture

Haque 589

#2
Valantis Profile Picture

Valantis 328

#3
David_MA Profile Picture

David_MA 284 Super User 2026 Season 1

Last 30 days Overall leaderboard