我需要使用 powershell 添加一个 txt 文件作为邮件正文(不是附件),有什么办法吗?

我需要使用 powershell 添加一个 txt 文件作为邮件正文(不是附件),有什么办法吗?

$mail.Subject = “testforloop”;

$mail.Priority =“正常”

$mail.Body = #我需要此处的 txt 文件内容(例如 D:\results)#

有什么好办法可以解决这个问题吗?谢谢!

答案1

用于Get-Content将文本文件读入字符串:

$mail.Body = (Get-Content "myFileName")

Get-Content具有允许指定编码等的参数。

相关内容