使用 Powershell 的邮件自动化任务

Mail Automation Task using Powershell

我一直在尝试使用 Powershell 通过我的 outlook 帐户自动发送邮件和附件。

$OL = New-Object -ComObject outlook.application

Start-Sleep 5

<#
olAppointmentItem
olContactItem
olDistributionListItem
olJournalItem
olMailItem
olNoteItem
olPostItem
olTaskItem
#>

#Create Item
$mItem = $OL.CreateItem("olMailItem")

$mItem.To = "PlayingWithPowershell@gmail.com"
$mItem.Subject = "PowerMail"
$mItem.Body = "SENT FROM POWERSHELL"

$mItem.Send()

无法在代码中添加附件。 请帮帮我。

查看文档here

在你的情况下是这样的:

$mItem.Attachments.Add( "C:\My Documents\Q496.xls", olByValue, 1, "4th Quarter 1996 Results Chart"

参数是来源、类型、位置和显示名称。