0

我有一个用于自动通知用户 AD 密码过期的脚本。VPN用户需要它。但我找不到解决 $msg.to 字段问题的方法。例如,它不能接受 "$msg.to = ''" 并且只能通过 $msg.to.add 方法工作。这使得情况不太好,当首先收到通知的用户将收到所有下一封电子邮件,因为它们将被添加到字符串的末尾,但不会替换 $msg.to 中的所有数据

有一个代码:

Import-Module ActiveDirectory

#SMTP server name
$smtpServer = "mail.domain.local"

#Creating a Mail object
$msg = new-object Net.Mail.MailMessage
$msgr = new-object Net.Mail.MailMessage

#Creating SMTP server object
$smtp = new-object Net.Mail.SmtpClient($smtpServer)


#E-mail structure
Function EmailStructure($to,$expiryDate,$upn)
{
    $msg.IsBodyHtml = $true
    $msg.From = "notification@domain.com"
    $msg.To.Add($to)
    $msg.Subject = "Password expiration notice"
    $msg.Body = "<html><body><font face='Arial'>This is an automatically generated message from Exchange service.<br><br><b>Please note that the password for your account <i><u>Domain\$upn</u></i> will expire on $expiryDate.</b><br><br>Please change your password immediately or at least before this date as you will be unable to access the service without contacting your administrator.</font></body></html>"
}

Function EmailStructureReport($to)
{
    $msgr.IsBodyHtml = $true
    $msgr.From = "notification@domain.com"
    $msgr.To.Add($to)
    $msgr.Subject = "Script running report"
    $msgr.Body = "<html><body><font face='Arial'><pre><b>This is a daily report.<br><br>Script has successfully completed its work.<br>$NotificationCounter users have recieved notifications:<br><br>$ListOfAccounts<br><br></b></pre></font></body></html>"
}

#Set the target OU that will be searched for user accounts
$OU = "OU=Organisation,DC=domain,DC=local"

$ADAccounts = Get-ADUser -LDAPFilter "(objectClass=user)" -searchbase $OU -properties PasswordExpired, extensionAttribute15, PasswordNeverExpires, PasswordLastSet, Mail, Enabled | Where-object {$_.Enabled -eq $true -and $_.PasswordNeverExpires -eq $false}
$NotificationCounter = 0
$ListOfAccounts = ""

Foreach ($ADAccount in $ADAccounts)
{
 $accountFGPP = Get-ADUserResultantPasswordPolicy $ADAccount

                if ($accountFGPP -ne $null)
        {
                 $maxPasswordAgeTimeSpan = $accountFGPP.MaxPasswordAge
        }
        else
        {
                 $maxPasswordAgeTimeSpan = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge
                }

#Fill in the user variables
    $samAccountName = $ADAccount.samAccountName
    $userEmailAddress = $ADAccount.ExtensionAttribute15
    $userPrincipalName = $ADAccount.UserPrincipalName

    if ($ADAccount.PasswordExpired)
    {
     Write-host "The password for account $samAccountName has expired!"
    }
    else
    {
     $ExpiryDate = $ADAccount.PasswordLastSet + $maxPasswordAgeTimeSpan
     $TodaysDate = Get-Date
     $DaysToExpire = $ExpiryDate - $TodaysDate
     $DaysToExpireDD = $DaysToExpire.ToString() -Split ("\S{17}$")
     Write-host "The password for account $samAccountName expires on: $ExpiryDate. Days left: $DaysToExpireDD"
        if (($DaysToExpire.Days -eq 15) -or ($DaysToExpire.Days -eq 7) -or ($DaysToExpire.Days -le 3))
        {
         $expiryDate = $expiryDate.ToString("d",$ci)
#Generate e-mail structure and send message
            if ($userEmailAddress)
            {
             EmailStructure $userEmailAddress $expiryDate $samAccountName
             $smtp.Send($msg)
             Write-Host "NOTIFICATION - $samAccountName :: e-mail was sent to $userEmailAddress"
             $NotificationCounter = $NotificationCounter + 1
             $ListOfAccounts = $ListOfAccounts + $samAccountName + "&#9; - $DaysToExpireDD days left.<br>"
            }
        }

    }
}
Write-Host "SENDING REPORT TO IT DEPARTMENT"
EmailStructureReport("itdepartment@domain.com")
$smtp.Send($msgr)

每次发送电子邮件后,如何在 $msg.to 中删除字符串?

4

1 回答 1

3

如果您想重复使用相同的邮件但更改地址并多次发送到不同的地址,请使用MailAddressCollection 上的clear方法。

所以你的代码看起来像这样:

$msg.To.Clear()
$msg.To.Add($to)
于 2012-11-21T13:57:42.160 回答