Microsoft
Software
Hardware
Network
Question : Move Mailbox Powershell Script (sending Welcome e-mail HTML format)
Hi,
Moving the mailbox (from 2003 to 2010) is not a problem..however i cannot get the script to determine the move status ( and send welcome email if status = completed or completed with warning). I've included my script below. My main problem is getting it send the HTML email.
Could anyone stop me from pulling out what's left of my hair?
Thanks
function SendEmail
{
Param ($To, $From, $Subject, $Body, $Attach)
$msg = New-Object Net.Mail.MailMessage
$msg.From = $From
$msg.To.Add($To)
$msg.Body = $Body
$body= New-Object System.Text.StringBuilder
$msg.Subject = $Subject
$msg.IsHtmlBody = $true
$client = New-Object Net.Mail.SmtpClient("local
host")
$client.Send($msg)
}
$EmailTo = “*@bskyb.com”
$EmailFrom = “*@bskyb.com”
$EmailSub = “Migration to Exchange 2010”
$EmailBody = get-content "c:\temp\welcomemail.html”
| Out-String
#Call Function
SendEmail $EmailTo $EmailFrom $EmailSub $EmailBody
Answer : Move Mailbox Powershell Script (sending Welcome e-mail HTML format)
You have put IsBodyBody, it's IsBodyHtml !!
Also, make sure you have a file called 'welcomemail.html' in c:\temp
Shaun
Random Solutions
Sqlite not registered on the local machine
cp command wont copy iso image contents to hard drive
VBA syntax to include a specific directory and a selected file
Bootable - Multi O/S USB Installer?
how do I export group policy from server 2003 x64
SQL Injection & Classic ASP
MS Exchange 2007 / SBS 2008 - guidelines for email performance
C# DataRowCollection sort
How can I use a subform with a frame code in access
SQL COUNT DISTINCT problem