How can the current date and time be displayed in the Form Builder email?

The current date and time can be displayed using Twig's `now` variable together with the `format_datetime` filter. Simply add the desired line to the email template.
English Example:

Request received: {{ "now"|format_datetime('medium', 'short', locale='en') }}


German Example
Anfrage eingegangen: {{ "now"|format_datetime(pattern="dd.MM.yyyy 'um' HH:mm 'Uhr'", locale="de") }}

Note: The value is generated when the email is created. The date and time format can be customized using the `pattern` parameter.