i currently have a formula that sends files from my attachmentcontrol to outlook and a formula that captures the screen and sends it to outlook. now i need them to be used with one button so instead of having to press 2 i only need to press one and that the files from my attachment control and the pdf from the screen get put into the same email.
Office365Outlook.SendEmailV2(
"test@mail.com",
"Subject",
"Email Body",
{
Attachments: ForAll(
DataCardValue3.Attachments,
{
Name: Name,
ContentBytes: Value
}
)
}
)
Office365Outlook.SendEmailV2(User().Email,"test","Test1",{Attachments:Table({Name:"Test.pdf",ContentBytes:PDF(Screen4)})})
top one is for attachment control bottom one for pdf.

Report
All responses (
Answers (