How to attach a file to an email with PowerShell
问题 I have written a PowerShell script that will create an email, however I can't seem to attach a file. The file does exist and PowerShell can open it, Could anyone tell me what I'm doing wrong? $ol = New-Object -comObject Outlook.Application $message = $ol.CreateItem(0) $message.Recipients.Add("Deployment") $message.Subject = "Website deployment" $message.Body = "See attached file for the updates made to the website`r`n`r`nWarm Regards`r`nLuke" # Attach a file this doesn't work $file = "K: