It is indeed an edit form. So, the link that gets emailed is to a SME so that they can answer the question being asked.
The item property of the form is varRecordFormDetails.
The OnSuccess propery of the form is is: Set(varRecordFormDetails, FormAsk.LastSubmit);
The App also has an OnStart property, which is:
Set(
varRecordFormDetails,
LookUp(
AmA,
ID = Value(Param("amaid"))
)
);
If(
!IsBlank(varRecordFormDetails),
EditForm(FormAsk)
)
Hopefully, that helps?