General Tips: http://jweiland.net/typo3/extension-showcase/mailformulare-form.html Success Message Workaround: http://forum.typo3.org/index.php/t/194354/ Here is just a simple solution for this problem with typoscript: Add a hidden field, say "sent" to your form. In the page TS write the following typoscript condition: <code> [globalString = GP:tx_form|sent=1 ] [end] </code> Inside you can change whatever page values you want. In my case I added: <code> [globalString = GP:tx_form|sent=1 ] page.10.CONTENT.select.pidInList = 30 #show content from page with id 30 [end] </code>