@crjwarre
Excellent screenshot. This provides the perfect information to share some sample code.
Put this code in the OnSuccess property of your Form. This will show how to display the 1st 3 fields on data in your form. Continue the same pattern to add more.
Set(newRecord, Form1.LastSubmit);
Office365Outlook(
User().Email,
"Subject Line",
"
Lot #: "& newRecord.'Lot #'&"
Client #: "& newRecord.'Client #'&"
Fill Line: "& newRecord.'Fill Line'
);
My example shows how to display text fields but you will have to make slight modifications to the pattern for Choices, Dates, People, etc.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."