Re: How can I get MS List Item and send to MS Teams
Hi @Happy0125
You can make use of 'Filter query' in 'Get items' action to filter out the records based on the reminder date. Using result of 'get items', you can make html table using 'Create an HTM table' action and send it to the teams channel or group chat.
Here is the sample flow for your reference:

Expression used in filter query:
DueDate ge '@{startOfDay(utcNow(),'yyyy-MM-dd')}' and DueDate lt '@{startOfDay(addDays(utcNow(),1),'yyyy-MM-dd')}'


If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks