Hello, I am sending an email out using SendGrid. I have a filed that is a link of multiple linked records. It strings them all together with commas between, which is really exhausting to look at, i.e.:
“Day 1, Day 2, Day 3, Day 4, Day 5”
I would like for it to be formatted as:
Day 1
Day 2
Day 3
Day 4
Day 5
Any ideas? I tried turning on HTML in the SendGrid app, and used a REGEX_REPLACE formula to replace the commas with <br>
, but that didn’t work.
Thanks!
Tom