PoshCode Archive  Artifact [bae5128d85]

Artifact bae5128d8584e3818d9fd70b5484f3b7cd5b40ef7770719f83b8b5051f3e3d87:

  • File Email-attachments.ps1 — part of check-in [f551fbc4e1] at 2018-06-10 14:13:59 on branch trunk — All descriptions on the web which show how to do this so far have left the email attachment open which means if the script is continuing after the email and you wish to use the file you have attached you will not be able to as it will show as locked, use this example to close the attached file correctly using .Dispose() (user: unknown size: 907)

# encoding: ascii
# api: powershell
# title: Email attachments
# description: All descriptions on the web which show how to do this so far have left the email attachment open which means if the script is continuing after the email and you wish to use the file you have attached you will not be able to as it will show as locked, use this example to close the attached file correctly using .Dispose()
# version: 0.1
# license: CC0
# x-poshcode-id: 636
# x-archived: 2009-05-14T07:59:06
#
#
$file = "MYFILE.TXT"

$smtpServer = "MYSMTPSERVER.EMAIL.CO.UK"

$msg = new-object Net.Mail.MailMessage
$att = new-object Net.Mail.Attachment($file)
$smtp = new-object Net.Mail.SmtpClient($smtpServer)

$msg.From = "FROMME@EMAIL.CO.UK"
$msg.To.Add("TOME@EMAIL.CO.UK")
$msg.Subject = "MY SUBJECT"
$msg.Body = "MY TEXT FOR THE EMAIL"
$msg.Attachments.Add($att)

$smtp.Send($msg)

$att.Dispose()