Hi all,
I am working on some custom actions for requests and am concatenating a few user input text fields into the description field of the request.
Currently I have (anything not in quotes are variables from the user input form):
"New User Name: " + NewUserName + "; " + "Email: " + UserEmail + "; " + "Direct Manager: " + DirectManager
I'd like to add line breaks for legibility, but have found <br> isn't working. I thought it might be something with my syntax so I just tried using two variable names and a break between the two...
NewUserName<br>UserEmail
...but I get a syntax error that a $FieldName is expected.
Are line breaks not feasible in this scenario?
I've also tried to create a variable (textarea) to concatenate the text fields with line breaks, but that also didn't work.
My hope is this is just a user error on my part.
Thanks!
Jen