Hi,
I currently have an app to submit purchase requests.

The onselect of the submit button is as follows:
Navigate(PRSuccess, ScreenTransition.Fade);
ClearCollect(collectAttachments, PRattachmentcard.Attachments);
Office365Outlook.SendEmailV2(
"myemail",
"Purchase Order",
"Item 1: " & item1input & "<br/>" & "Item 2: " & item2input & "<br/>" & "Item 3: " & item3input & "<br/>" & "Item 4: " & item4input & "<br/>" & "Item 5: " & item5input & "<br/>" & "Item 6: " & item6input & "<br/>" & "Item 7: " & item7input & "<br/>" & "Item 8: " & item8input & "<br/>" & "Item 9: " & item9input & "<br/>" & "Item 10: " & item10input,
{Attachments: AddColumns(
RenameColumns(
PRattachmentcard.Attachments,
"Value",
"ContentBytes"
),
"@odata.type",
""
)
}
)
When I receive the email in my inbox, it displays all ten fields even if some are blank.

How do I make it that the fields that have no input for don't show up in the email?