"Can't Display Your Message" Error In Outlook Web App
Problem When a user of Microsoft Exchange Online attempts to open a message encrypted with Microsoft Purview Message Encryption in Outlook Web App, they receive the error message: We cannot display your message at this moment. This problem happens even when user is capable of sending encrypted messages using Outlook Web App. Cause This issue arises due to alterations in the MIME types linked to the default Outlook Web App policy, resulting in the removal or modification of the text/html MIME type. Solution To address this issue, restore the MIME types linked to the default Outlook Web App policy to their original settings. To achieve this, follow these steps: Connect to Exchange Online via Remote PowerShell. Run the following commands: $owapolicy = Get -OwaMailboxPolicy Set -OwaMailboxPolicy -AllowedMimeTypes @{remove = "text/html"} -BlockedMimeTypes @{remove = "text/html"} -ForcedSaveMimeTypes @{add = "text/html"} -Identity $owapolicy.Identity Conclus...