
Announcements
Hello all,
I’m building an app which has form datacard with rich text. Our users will be updating these forms throughout the day with attachments if any and end of the day we want to consolidate all the items and send as an email to the other team. Is there a way to consolidate all these in single item and send as an email with images attached in line?
thanks,
Hi @statone ,
Do you want to send an email in power apps including rich text and picture as attachment?
Based on your description, I have made a simple test for your reference.
Here is my test:
Formula:
ClearCollect(ImageCollection,{Name: "pic1.png", ContentBytes: ImageC.Image, '@odata.type':""});
Office365Outlook.SendEmailV2(User().Email,"SubjectName",Text(Concatenate(DataCardValue_rich,DataCardValue_num)),{Attachments: ImageCollection, IsHtml:true})
Result:
Best regards,