CRLF using powershell write-host

433 Views Asked by At

I am trying to output a log file to a variable and use that variable as Body on a Send-MailMessage. The problem is that all CRLFs in the variable are missing in the output.

ex.

$Body = get-content .\TTT.txt
$body
Test
Test1
Test2

write-host "$($Body)"
Test Test1 Test2

Is there a way to avoid it? (keep the CRLF)

3

There are 3 best solutions below

0
On

Documentation gives an answer:

When writing a collection to the host, elements of the collection are printed on the same line separated by a single space. This can be overridden with the Separator parameter.

Write-Host docs

2
On

If you must use Write-Host then add the parameter -Separator with Newline:

Write-Host $Body -Separator "`n"
0
On

From what I saw at Cannot Get Send-MailMessage to Send Multiple Lines the workaround is like this:

$Body = @()
$Body += "Test"
$Body += "Test1"
$Body += "Test2"

etc

Send-MailMessage -To xxx -From xxx -Smtp xxx -Subject "Test" -Body ($Body | Out-String)

The above works as I wanted.