You can send the data contained in those fields in an email, but I don't think there is a way to capture a screenshot of that automatically and then send it in an email body.
Using HTML you can build the body of the email, format it nicely and include data from your app. Here is an example:
LicenseeName, Justification, and LicenseType are all fields in the collection proceed.
ForAll(Proceed,
Office365Outlook.SendEmailV2("jonh.doe@abc.com", "License Request" & varRecord.RequestNumber, "<p>A " & LicenseType & "premium license has been requested for "& LicenseeName & ".<br><br>Reason: " & Justification &".<br>
<br>The first steps of the eReq process have been initiated and a quote has been requested from our vendor, Zones. The quote will be sent to " & LicenseeName &".<br>
<br>Once the quote is received, " & LicenseeName & " will need to submit an eReq in order for the license to be ordered. Information for the eReq can be found at this link:</p>")
)