Hi,
I'm having trouble trying to send an outlook email with attachments from a sharepoint list. I have a button that when clicked sends out a message using Office365Outlook.SendEmailV2. I'm trying to use collections to gather the images:
ClearCollect(
PicCol,
LookUp(AreaPicturesV2, Area = AreaCombo.Selected.Area, Picture1),
LookUp(AreaPicturesV2, Area = AreaCombo.Selected.Area, Picture2),
LookUp(AreaPicturesV2, Area = AreaCombo.Selected.Area, Picture3),
LookUp(AreaPicturesV2, Area = AreaCombo.Selected.Area, Picture4),
LookUp(AreaPicturesV2, Area = AreaCombo.Selected.Area, Picture5)
);
The LookUp here goes into the sharepoint list, depending on the area selected, it'll put in the pictures of that selected area.
The images are saved as the image item in the list as a column, with me trying to get that image from the sharepoint and have it as an attachment in the email.
My train of thought is to create a collection with those images in it, then be able to have an attachment with that collection, however I am unable to figure out a way to perform this.