Send HTML Email and attachment using Powershell

 Powershell script to email 

###########Define Variables########

$date = “get-date”
$fromaddress = “[email protected]
$toaddress = “[email protected]
$Subject = “Test $(get-date)”
$body = Get-Content C:\temp\Test.htm
#$attachment = “C:\sendemail\test.txt”
$smtpserver = “SMTP Server name”

####################################

$message = new-object System.Net.Mail.MailMessage
$message.From = $fromaddress
$message.To.Add($toaddress)
#$message.CC.Add($CCaddress)
#$message.Bcc.Add($bccaddress)
$message.IsBodyHtml = $True
$message.Subject = $Subject
#$attach = new-object Net.Mail.Attachment($attachment)
#$message.Attachments.Add($attach)
$message.body = $body
$smtp = new-object Net.Mail.SmtpClient($smtpserver)
$smtp.Send($message)

20 Comments

  1. Hi, i feel that i saw you visited my website so i came to “go back the choose”.I am trying to to find things to improve my website!I suppose its good enough to use some of your ideas!!

  2. I’m now not positive the place you are getting your information, however great topic. I must spend a while studying more or working out more. Thank you for magnificent info I was searching for this info for my mission.

Leave a Reply

Your email address will not be published.