$mail.Subject = “testforloop”;
$mail.Priority =“正常”
$mail.Body = #我需要此处的 txt 文件内容(例如 D:\results)#
有什么好办法可以解决这个问题吗?谢谢!
答案1
用于Get-Content
将文本文件读入字符串:
$mail.Body = (Get-Content "myFileName")
Get-Content
具有允许指定编码等的参数。
$mail.Subject = “testforloop”;
$mail.Priority =“正常”
$mail.Body = #我需要此处的 txt 文件内容(例如 D:\results)#
有什么好办法可以解决这个问题吗?谢谢!
用于Get-Content
将文本文件读入字符串:
$mail.Body = (Get-Content "myFileName")
Get-Content
具有允许指定编码等的参数。