Hi @Fouad ,
Could you please share a bit more about the few commands you used to send email to your End users?
Do you reference values from your Edit form data card values within your send email formula?
If you want to delay few seconds before it resets the actual Edit form, I think the Timer control could achieve your needs. Please add a Timer control in your app, set the Duration property to following:
5000 /* <-- 5 seconds */
set the Start property of the Timer control to following:
IsStart
Set the OnTimerEnd property of the Timer control to following:
ResetForm(EditForm1);
Set(IsStart, false)
Set the Visible property of the Timer control to following:
false
Set the OnSuccess property of the Edit form to following:
Set(IsStart, true);
'Type your send email formula here ...'
Please take a try with above solution, then check if the issue is solved.
In addition, I think it is not necessary to add a Timer control to achieve your needs. If you want to reference the data card values in your Edit form within your send email formula, I think the LastSubmit property of the Edit form could achieve your needs.
Within your send email formula, you could use the following formula to reference the values from the lastest submitted record:
EditForm1.LastSubmit.Column1
EditForm1.LastSubmit.Column2
...
Please take a try with above solution, then check if the issue is solved.
Best regards,