Hi @bsoares ,
Could you tell me whether you submit the form when you navigate to the email screen?
Please notice that:
if you submit the form, data in the form will be invalid.
So if you not submit the form, you could directly use the data in the form.
Just setting the email textinput's Default like @mdevaney said.
If you have submitted the form, you need to firstly save the data that you want to use as variables before you submit the form.
Then set the email textinput's Default based on these variables.
For example:
set the form's submit button's OnSelect:
Set(Locker,TextInput_Locker.Text);
Set(Code,DataCardValue9.Text);
SubmitForm(Form1)
set the email body textinput's Default:
"Hi,
Your XXX is ready to be picked up. It is in locker "& Locker //variable1
&" and the code is "&
Code&"." //variable2
Best regards,