Ready-to-use finishers 

he TYPO3 Form Framework provides several built-in finishers that can be used out of the box. These handle common post-submission tasks such as sending emails, showing confirmation messages, or saving data.

In addition, third-party extensions may provide further finishers, which can be found in the TYPO3 Extension Repository (TER).

Closure finisher 

Executes a custom PHP closure after a successful submission—use for ad-hoc logic without creating a full class.

Confirmation finisher 

Renders a confirmation/thank-you message (or view) once the form is submitted.

DeleteUploads finishers 

Removes files uploaded during the submission—handy after emailing them if you don’t want files kept on the server.

DeleteUploads finishers 

Sends an email based on the submitted data; supports Fluid templates and placeholders for field values.

Flash message finisher 

Shows a flash message to the user after submit (e.g., success or info notice).

Redirect finisher 

Redirects to another page or route after submit; place it last since it stops subsequent finishers.

SaveToDatabase finisher 

Persists submitted form values to a database table according to your mapping/configuration.