Bug #97863
Updated by Björn Jacob over 2 years ago
Related to #83010
I have the similiar problem with TYPO3 11, while I tried to use a form with an AJAX-request. The finisher for sending of emails would work sometimes; and sometimes it would not work. After a lot of poking around, I found out:
The following version in the template of the form prohibited the sending of mails in my case:
@
<f:form.textfield
value="{myLink}"
name="{element.identifier}"
id="{element.uniqueIdentifier}"
errorClass="{element.properties.elementErrorClassAttribute}"
additionalAttributes="{formvh:translateElementProperty(element: element, property: 'fluidAdditionalAttributes')}"
/>
@
The following version performed the sending of mails in my case:
@
<f:form.textfield
value="{myLink}"
property="{element.identifier}"
id="{element.uniqueIdentifier}"
errorClass="{element.properties.elementErrorClassAttribute}"
additionalAttributes="{formvh:translateElementProperty(element: element, property: 'fluidAdditionalAttributes')}"
/>
@
The line @property="{element.identifier}"@ is the difference.