Remove spaces from multi select checkbox in mail body

144 Views Asked by At

I have a powermail form in which I use a select box with multi selection. In the email body the selected values are written as a comma separated list but with a space after each comma.

The developer of powermail (powermail 7.4.2 / TYPO3 9.5) has given me an answer on github: https://github.com/einpraegsam/powermail/issues/680

He directed me to an hardcoded entry in the answer.php of powermail.

I've changes the line in the answer.php to my needs but the spaces in the e-mail remain.

Can anyone give me a tip how to remove these spaces in the mail body for the multi select value list?

1

There are 1 best solutions below

1
On BEST ANSWER

First question after code changes:
have you cleared all caches?

Then you need to verify that this line of code is responsible for your spaces. change the default delimiter to something new (like: '#').
Differentiate between the default value of this function and the value which is transmitted when the function is called. You could change the default value, but if the function is called with the old value it will override the changed default.

If that doesn't help you need to debug where your values got concatenated. That could be in FLUID, Typoscript or PHP.