Hi, I have problem with sending email to specific address.
Brief description: I retrieve items which have email address. I grouped it together and send email with all items to one email address.
I was inspired by this procedure: https://powerusers.microsoft.com/t5/Building-Flows/flow-to-send-single-email-for-set-of-records-in-Sharepoint-list/td-p/176057
Everything works except sending an email. It takes email address in ODATA format (maybe this is the problem). In action "sending email" the output of this action looks like:
"To": {"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":1,"Value":"example@example.cz"};
and alert is: BadRequest., and some of the reciever are not valid.
But when I write only example@example.cz, into the box TO, it works without trouble.
So it is necessary to trim this output? or problem is somewhere else?
Now I have this solution's output:

and this is solution:

Current item bears data as I mentioned above: "@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":1,"Value":"example@example.cz"
Have anybody experience with this? Thanks for answers.