In some checkbox fields of a Powermail 2.x form in TYPO3 6.2.x, I have HTML inside the Value of a checkbox, which is needed on the website, but should be "parsed away" in the email to the receiver.
Of the selected value
<span class="kurs-col1">Nr.1</span> <span class="kurs-col2">Kurs 1 </span> <span class="kurs-col3">1.1.2015</span>
This is the Output I need in the email:
Nr.1 Kurs 1 1.1.2015
I think I did this in Powermail 1.x with the following TypoScript:
label.parse = true
label.allowTags = span,strong
But these settings seem to be gone. How can I do it?