Ich versuche, ein PowerShell-Skript zu schreiben, das alle Dateien in jedem Unterordner von C:\Reports\ zusammen in einer E-Mail als Anhänge versendet. Wenn die Unterordner beispielsweise C:\Reports\ABC mit a.txt, b.xml und c.jpg und C:\Reports\DEF mit d.txt, e.xml und f.pdf sind, sollte der Code a.txt, b.xml und c.jpg in einer E-Mail und d.txt, e.xml und f.pdf in einer anderen E-Mail versenden. Ich habe den folgenden Code geschrieben:-
$Directory=Get-ChildItem "C:\Reports\" -Directory
$Cred = Get-Credential
Foreach($d in $Directory) {
Write-Host "Working on directory $($d.FullName)..."
$files=Get-ChildItem -Path "$($d.FullName)"
cd $d.Fullname
Send-MailMessage -From "[email protected]" -To "[email protected]" -Subject "test" -SmtpServer "smtp.gmail.com" -Port "587" -Attachments $files -BodyAsHtml "test msg" -Credential $Cred -UseSsl
}
Allerdings scheint dies nur die letzte Datei in jedem Unterordner anzuhängen und dann zum nächsten Ordner und zur nächsten E-Mail zu wechseln. Ich frage mich, wie Get-ChildItem - File richtig mit Send-MailMessage - Attachments verwendet werden kann, um das zu erreichen, was ich versuche.
Antwort1
Hier ist etwas (ungetesteter) Code:
#Connection Details
$username="john"
$password="password"
$smtpServer = "mail.server.local"
$msg = new-object Net.Mail.MailMessage
#Change port number for SSL to 587
$smtp = New-Object Net.Mail.SmtpClient($SmtpServer, 25)
#Uncomment Next line for SSL
#$smtp.EnableSsl = $true
$smtp.Credentials = New-Object System.Net.NetworkCredential( $username, $password )
#From Address
$msg.From = "[email protected]"
#To Address, Copy the below line for multiple recipients
$msg.To.Add("[email protected]")
#Message Body
$msg.Body="Please See Attached Files"
#Message Subject
$msg.Subject = "Email with Multiple Attachments"
#your file location
$files=Get-ChildItem "C:\Reports\"
Foreach($file in $files)
{
Write-Host "Attaching File :- " $file
$attachment = new-object Net.Mail.Attachment -ArgumentList $file.FullName
$msg.Attachments.Add($attachment)
}
$smtp.Send($msg)
$attachment.Dispose();
$msg.Dispose();