The process of building custom applications and tools that interact with Microsoft SharePoint, including SharePoint Online in Microsoft 365.
Hi Siti Aisyah
Thank you for reaching out to Microsoft Q&A
The behaviors you are experiencing with subject lines and reply detection are due to the Office 365 Groups Mail connector's restricted trigger output. Unlike the Outlook connector, the Groups Mail trigger does not expose the message body or standard email fields directly, additional actions such as "Get a thread post" are required to retrieve them. This makes building a reliable ticketing flow significantly more complex compared to a standard Outlook-based approach.
There are two workaround approaches you can try in this situation:
Approach 1: Workaround within the Groups Mail trigger (no admin access required)
For the subject line, reference it manually via the expression triggerOutputs()?['body/subject'] rather than relying on dynamic content chips.
To prevent replies from generating duplicate tickets, store the conversationId from the trigger (triggerOutputs()?['body/conversationId']) in a dedicated column in your SharePoint list.
On each trigger run, use a "Get items" action filtered by that conversation ID, if a matching record already exists, skip ticket creation.
Approach 2: Migrate to a Shared Mailbox trigger
If your admin can configure forwarding from the M365 Group mailbox to a shared mailbox, replace the Groups Mail trigger with the Outlook connector's "When a new email arrives in a shared mailbox" trigger.
Hope my answer will help you.
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.