I am making a power app to send email with multiple attachments.
It sends email with 1 attachment control.
Office365Outlook.SendEmailV2(
"[email protected]",
"Subject",
"Body",
{
Attachments: ForAll(
Attachment_Inspection_Record.Attachments,
{
ContentBytes: Value,
Name: Name
}
)
})
I have 5 attachment controls.
There is an error if send email with 5 attachment control attachment:
Office365Outlook.SendEmailV2(
"[email protected]",
"Subject",
"Body",
{
Attachments: ForAll(
Attachment_Inspection_Record.Attachments,
{
ContentBytes: Value,
Name: Name
},
Attachment_CCM.Attachments,
{
ContentBytes: Value,
Name: Name
},
Attachment_Sitephoto_1.Attachments,
{
ContentBytes: Value,
Name: Name
}
Attachment_Sitephoto_2.Attachments,
{
ContentBytes: Value,
Name: Name
}
Attachment_Sitephoto_3.Attachments,
{
ContentBytes: Value,
Name: Name
}
)
});