I can send an e-mail with different attachments from a origin. It work perfectly with this code.
Office365Outlook.SendEmailV2(TextEmailTo_1.Text; TextEmailSubject1_1.Text; 'HtmlText_e-mail_aut_1'.HtmlText;
{
IsHtml:true;
Importance:"Normal";
Attachments: AddColumns(Filter(FotosBD;ID=Lista_Geral.Selected.ID); "Name"; Vista & ".jpg" ; "ContentBytes"; Picture; "@odata.type"; "")
});;
Back()
But I need to attach more from other origin
I need something like this
Attachments:
AddColumns(Filter(FotosBD;ID=Lista_Geral.Selected.ID); "Name"; Vista & ".jpg" ; "ContentBytes"; Picture; "@odata.type"; "")
&
AddColumns(Filter(PdfBD;ID=Lista_Geral.Selected.ID); "Name"; Doc & ".pdf" ; "ContentBytes"; Picture; "@odata.type"; "")
In the same e-mail, attachments from different lists
Can any one help…
Thanks
GPinto