I'm trying to figure out how to specify the output of a form.
The standard output is enough for the configured emailaddress, but for the form-email i want a different format with output. How do i do this?
- email:
from: "{{ config.plugins.email.from }}"
to:
- "{{ config.plugins.email.from }}"
- "{{ form.value.email }}"
subject: "[Aanmeldformulier] {{ form.value.name|e }}"
body: "{% include 'forms/data.html.twig' %}"```
I need to figure out how to specify a second body/subject for {{ form.value.email }}.