User getting "message cannot be sent"

Stefan 40 Reputation points
2025-10-21T20:45:15.3633333+00:00

I'm running into a problem where users in my tenant cannot send emails from group inboxes.

If they try to type a reply in and then hit send, they get the pop-up that outlook "Couldn't send this message" and then everything they typed is deleted and they are presented with a message saying, "This message can't be sent because it no longer exists."

If they reply from their inbox, then it works just fine. But using it from the group inbox does not.

I had a Microsoft support ticket open on this issue, but after 2 months they closed it saying it was a known issue the backend team was working on. So I was wondering if it is possible anyone else has ever run into this?

They made me run some powershell commands here:
PS C:\WINDOWS\system32> Get-Recipientpermission -identity "<groupname>" -trustee "<user>"
This one came back without any results

PS C:\WINDOWS\system32> Get-DistributionGroupMember -Identity "<groupname>" | fl
This one errored out

Mostly because this is a M365 group, and not a distribution list or a shared inbox. The users are members of the M365 group and have been able to send to the groups just fine any other time.

Any ideas?

Message cannot be sent

message cannot be sent 2

Exchange Online
Exchange Online
A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.
0 comments No comments
{count} votes

Answer accepted by question author
  1. Teddie-D 6,630 Reputation points Microsoft External Staff Moderator
    2025-10-22T02:19:45.86+00:00

    Hi @Stefan 

    Thank you for posting your question in the Microsoft Q&A forum. 

    We understand you're encountering the message: "This message can't be sent because it no longer exists. It can only be discarded. Make sure you copy the contents of the message before you discard if you want to use them later." This typically appears when replying from a Group mailbox in Outlook on the web (OWA). 

    In most cases, this message shows up when the reply draft is linked to a conversation item in the Group mailbox that Outlook can no longer access. This may happen if the original item was deleted, moved, or affected by retention policies. It can also occur when attempting to send as the Group without the appropriate delegate permissions. 

    After reviewing similar situations, we’ve found that many users have experienced the same challenge and discovered helpful workarounds. Before applying those, we recommend checking a few key areas to ensure your configuration is set up correctly. 

    1.Confirm delegate permissions on the group 
    Members can always reply from their personal inbox copies using their own identity. However, to send a response from the Group mailbox as the Group, you must assign either Send As or Send on behalf permissions to the user.
    Please follow this article Allow members to send as or send on behalf of a group | Microsoft Learn.
    You can verify existing permissions with these cmdlets: 

    Get-UnifiedGroup -Identity "<groupname>" | fl DisplayName,PrimarySmtpAddress,AccessType 
    Get-UnifiedGroupLinks -Identity "<groupname>" -LinkType Members 
    

    These confirm the Group type and list its members. 
    Please note that Get‑RecipientPermission returns entries only if Send As already exists, it doesn’t show Send on behalf. And Get‑DistributionGroupMember fails because a Microsoft 365 Group isn’t a classic distribution group. You should use the Unified Group cmdlets above. 

    2.Review Retention Policies
    If you reply to older Group threads, a Purview retention policy targeting Microsoft 365 Groups can delete or move the original item while the draft is open. Please review retention for groups and adjust if needed:  
    Go to Microsoft Purview > Data lifecycle management > Policies > inspect any policy scoped to Microsoft 365 Groups. If you’re using Delete only or Retain then delete with short durations, replies to old posts can fail when the source item is removed.  
    You can read more at Learn about retention for Exchange | Microsoft Learn.

    3.Ensure group visibility 
    Groups hidden from Exchange clients or address lists may behave unpredictably in OWA. To ensure visibility: 

    Set-UnifiedGroup -Identity "Group Display Name" -HiddenFromExchangeClientsEnabled:$false -HiddenFromAddressListsEnabled:$false  
    

    Reference: Set-UnifiedGroup (ExchangePowerShell) | Microsoft Learn

    4.Test with a new conversation 
    You may try sending a new conversation from the Group in OWA. 
    -If a new conversation sends successfully but replies to existing threads fail, retention or deleted item linkage is the likely cause.
    -After updating permissions, test replying with the From field set to the Group to confirm Send as or Send on behalf is functioning. 

    5.If the issue still persists, you may try clearing cached address for the Group in OWA, as recommended by other users in the community.

    -Start a new email. 
    -Type a few letters of the group name. 
    -When Outlook auto-suggests the address, click the (x) to remove it from cache. 
    -Manually retype the full group email address and try sending again. 

    References: 
    -Replying to emails from M365 Outlook group - Microsoft Q&A
    -How to fix "This message can't be sent because it no longer exists. It can only be discarded. Make … 

    I hope this information is helpful. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".   

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 


1 additional answer

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.