Hi all,
I'm having trouble sending emails with multiple attachments through my app.
The error encountered is the following:

The OnSelect property of my send icon is:
Office365Outlook.SendEmailV2(
txtDestinatari.Text;
txtOggetto.Text;
txtCorpoMailAirFlash;
{
Importance: "Normal";
Cc: txtCopiaConoscenza.Text;
Bcc: txtCopiaConoscenzaNascosta.Text;
Attachments: RenameColumns(
AllegatiMailAir.Attachments;
"Value";
"ContentBytes"
)
}
);;
Reset(txtCopiaConoscenza);;
Reset(txtDestinatari);;
Reset(txtOggetto);;
Reset(txtCopiaConoscenzaNascosta);;
Back();;
Notify(
"Richiesta inviata con successo!";
NotificationType.Success;;
3000
)
I state that the attachments are correctly imported into the mail sending screen. (see screenshot below)
