Hi everyone,
I am trying to build a site with 2 forms. The first form is for the user to enter all relevant information, the 2nd one should be a page displaying the information and a checkbox of the type: 'are you sure?'
So far I used the display process to go from the 1st to the 2nd form. Using
{% include "forms/data.html.twig" %}
and
{% include "forms/secondForm.html.twig" with { form: forms(secondFormName) } %}
in the template to show the data and add the 2nd form on that page.
My problem is, that a mail should be send after submitting the 2nd form. But the email-adress is entered in the first form, also it should send information from 1st and 2nd form. Is there a trick to do it or will I have to rethink my approach?