We’re currently migrating our Outlook automation from the classic Outlook activities to Microsoft Graph API. In our existing process, each transaction is represented as a List, which we loop through and process accordingly.
However, with Graph API, the output is now a List. I wanted to check:
Can we directly use O365Message objects as transaction items throughout the process?
What are the key differences or limitations compared to MailMessage that we should be aware of?
Are there any known impacts on queueing, serialization, or data extraction when switching to O365Message?
Any best practices or recommendations for adapting existing workflows to this new structure?
Appreciate any insights or experiences from those who’ve already made this transition.