Question:
In a script for sending e-mails, how can I insert new text lines in the body text?
Solution:
To do so, you must concatenate it to Chr(10) and Chr(13) (New Line and Carriage Return).
Sample script:
.TextBody = “Line 1” & Chr(10) & Chr(13) & “Line 2”