I have a textarea in a form where the submitter is requested to enter dates and times as a list, each on a separate line.
This is displayed correctly when entering the form, but when received in the Mailback and Admin emails - which are set up to display in table cells, there are no line breaks, so it looks like this:
01/01/2022 09:00 - 17:00 01/02/2022 10:00 - 13:00 05/04/2022 11:00 - 14:00
instead of this:
01/01/2022 09:00 - 17:00
01/02/2022 10:00 - 13:00
05/04/2022 11:00 - 14:00
Is there a way to achieve this, other than dynamically adding rows, as that might not always be suitable.
TIA