I have some strings in email template, separated by Newlines:
Text1
Text3
Depending on a condition, Text2 could be added between:
Text1
Text2
Text3
To achieve this, I add [#UsrText2#] custom macros field of type string:
Text1
[#UsrText2#]Text3
But I can't can't make [#UsrText2#] contain NewLine. So result is:
Text1
Text2Text3
Email is sent with business process automatically.
How could I add a Newline? Neither Environment.NewLine nor \r\n, \n work.
Text1 and Text3 could also be dependent on conditions, so I don't want multiple templates for different combination of conditions.