I believe I got it.
ClearCollect(
col_PDF_Reports,
{name: "InspectionReport.pdf", contentBytes: varInspectionReportPDFBlob},
{name: "TrackPhotosReport.pdf", contentBytes: varTrackPhotosReportPDFBlob},
{name: "AdditionalPhotosReport.pdf", contentBytes: varAdditionalPhotosReportPDFBlob})
If(
IS_Inspection_Type_TI.Text = "Walking Inspection",
Office365Outlook.SendEmailV2(
IS_Client_Email_Address_TI.Text,
IS_Inspection_Type_TI.Text,
"To Whom it May Concern:" & "<br><br>" &
"A Walking Inspection was conducted at " & IS_Site_Location_TI.Text & "." & "<br><br>" &
"Please find attached the inspection report." & "<br><br>" &
"If you have any questions, you can contact Jill, Rail Inspector, at " & IS_Inspector_Email_Address_TI.Text,
{
Cc: "JollyRancher@acmerailagency.onmicrosoft.com",
Attachments: [
{
Name: "InspectionReport.pdf",
ContentBytes: LookUp(col_PDF_Reports, name = "InspectionReport.pdf").contentBytes
},
{
Name: "TrackPhotosReport.pdf",
ContentBytes: LookUp(col_PDF_Reports, name = "TrackPhotosReport.pdf").contentBytes
},
{
Name: "AdditionalPhotosReport.pdf",
ContentBytes: LookUp(col_PDF_Reports, name = "AdditionalPhotosReport.pdf").contentBytes
}
]
}
)
);