Hi,
I'm wanting to send an email out with an image and some information.
I have a Concat formula already which details the information. I
now want to add an attachment to the email that relates to the information. The Concat formula is
Office365.SendEmail(
"Email address", (Receptiant email is included in original formula)
"Perimeter Check Issues",
Concat(Perimeterissue,
"Building: " & Building & Char(10) &
"Area: " & Title & Char(10) &
"Comments: " & Comments & Char(10),
"Issue: " & Issue & Char(10) & Char(10)
)
)
'Perimeterissue' is the name of my collection which also contains the image.
The Collection is triggered by Clicking on the Camera function
Collect(
Perimeterissue,
{
Title: txtChecklistSpecificArea.Text,
Image: txtChecklistSpecificArea.Text & " .jpg",ContentBytes:Camera1.Photo,'@odata.type':"",
Hint: txtChecklistDescription.Text,
Building: drpSelectedBuilding.Selected.Result,
Issue: RadChecklist.Selected.Value,
Comments: txtChecklistComments.Text,
CheckedBy: txtCheckedBy.Text,
Date: txtDate.Text,
Time: txttime.Text
}
);
Reset(RadChecklist);
Reset(txtChecklistComments);
Any assistance would be grateful