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)
Documentation gives an answer:
Write-Host docs