Solved
E-mail Trigger Formatting: Replacing Comma with Line Break
I have an e-mail trigger in which part of the piped text are multiple selections that have been chosen. In the e-mail, the selections appear straight across the screen, separated by commas. This is unattractive, and I would like for each of the selections to appear on a new line. How can I do this?
Best answer by TomG
Replace the commas with breaks and save to an embedded variable. Then pipe the embedded variable into your email trigger.
```
Qualtrics.SurveyEngine.setEmbeddedData("myVar", "${q://QID1/ChoiceGroup/SelectedChoices}".replace(/, /g, "<br>"));
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

However, it did not work.
Do I have to input a page break between the two questions?
I should also note that all my questions in the block have a display logic on them, including the MC question. Also, I did not pipe anything into the email message (which has been created as a task in "Actions")