KB-25562: Adding a new line to texts via scripts.

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”

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *