C:\Reports\ の各サブフォルダー内のすべてのファイルを添付ファイルとして 1 つのメールにまとめて送信する PowerShell スクリプトを作成しようとしています。たとえば、サブフォルダーが C:\Reports\ABC で、a.txt、b.xml、c.jpg があり、C:\Reports\DEF で、d.txt、e.xml、f.pdf がある場合、コードは a.txt、b.xml、c.jpg を 1 つのメールに、d.txt、e.xml、f.pdf を別のメールにそれぞれ送信する必要があります。私は以下のコードを作成しました:-
$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
}
ただし、これは各サブフォルダーの最後のファイルのみを添付し、次のフォルダーと電子メールに移動するようです。 Get-ChildItem - File を Send-MailMessage - Attachments と適切に使用して、私がやろうとしていることを実現するにはどうすればよいのか疑問に思います。
答え1
ここに(テストされていない)コードがあります:
#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();