typo3 - Confirmation page for Form submit? -


in typo3 6.1 how can define confirmation page ("your request has been sent") afert form has been submitted? in version 6.0 there option target page in behaviour tab of form - cant find similar in version 6.1...

you can set success-message adding

messages.success = text messages.success.value = testsuccess 

to postprocessor.1

complete code:

postprocessor {     1 = mail     1 {         recipientemail = recipient@email         senderemail = sender@email         subject = testmail         messages.success = text         messages.success.value = testsuccess     } } 

you can define messages.error, if went wrong.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -