|
36 | 36 | process
|
37 | 37 | {
|
38 | 38 | #region Send mails
|
39 |
| - foreach ($item in (Get-ChildItem -Path (Get-PSFConfigValue -FullName 'MailDaemon.Daemon.MailPickupPath'))) |
| 39 | + foreach ($item in (Get-ChildItem -Path (Get-PSFConfigValue -FullName 'MailDaemon.Daemon.MailPickupPath') -Filter "*.clixml")) |
40 | 40 | {
|
41 | 41 | $email = Import-Clixml -Path $item.FullName
|
42 | 42 | # Skip emails that should not yet be processed
|
|
53 | 53 | if ($email.From) { $parameters["From"] = $email.From }
|
54 | 54 | else { $parameters["From"] = Get-PSFConfigValue -FullName 'MailDaemon.Daemon.SenderDefault' }
|
55 | 55 | if ($email.Cc) { $parameters["Cc"] = $email.Cc }
|
| 56 | + if ($email.Bcc) { $parameters["Bcc"] = $email.Bcc } |
56 | 57 | if ($email.Subject) { $parameters["Subject"] = $email.Subject }
|
57 | 58 | else { $parameters["Subject"] = "<no subject>" }
|
| 59 | + if ($email.Priority) {$parameters["Priority"] = $email.Priority} |
58 | 60 | if ($email.Body) { $parameters["Body"] = $email.Body }
|
59 | 61 | if ($null -ne $email.BodyAsHtml) { $parameters["BodyAsHtml"] = $email.BodyAsHtml }
|
60 |
| - if ($email.Attachments) { $parameters["Attachments"] = $email.Attachments } |
| 62 | + if ($email.Attachments) { |
| 63 | + if ($email.AttachmentsBinary) { |
| 64 | + $tempAttachmentParentDir = New-Item (join-path $item.Directory $item.BaseName) -Force -ItemType Directory |
| 65 | + $attachmentCounter = 0 |
| 66 | + $parameters["Attachments"] = @() |
| 67 | + # Using multiple subfolders to allow for duplicate attachment names |
| 68 | + foreach ($binaryAttachment in $email.AttachmentsBinary) { |
| 69 | + $tempAttachmentDir = new-item (join-path $tempAttachmentParentDir $attachmentCounter) -Force -ItemType Directory |
| 70 | + $tempAttachmentPath = join-path $tempAttachmentDir $binaryAttachment.Name |
| 71 | + $null = [System.IO.File]::WriteAllBytes($tempAttachmentPath, $binaryAttachment.Data) |
| 72 | + $parameters["Attachments"] = @($parameters["Attachments"]) + $tempAttachmentPath |
| 73 | + $attachmentCounter = $attachmentCounter + 1 |
| 74 | + } |
| 75 | + } else { |
| 76 | + $parameters["Attachments"] = $email.Attachments |
| 77 | + } |
| 78 | + } |
61 | 79 | if ($script:_Config.SenderCredentialPath) { $parameters["Credential"] = Import-Clixml (Get-PSFConfigValue -FullName 'MailDaemon.Daemon.SenderCredentialPath') }
|
62 | 80 |
|
63 | 81 | Write-PSFMessage -Level Verbose -String 'Invoke-MDDaemon.SendMail.Start' -StringValues @($email.Taskname, $parameters['Subject'], $parameters['From'], ($parameters['To'] -join ",")) -Target $email.Taskname
|
|
73 | 91 | Remove-Item $attachment -Force
|
74 | 92 | }
|
75 | 93 | }
|
| 94 | + # Remove temp deserialized attachments if used |
| 95 | + if ($email.AttachmentsBinary) { |
| 96 | + $null = remove-item -Path $tempAttachmentParentDir -Recurse -Force |
| 97 | + } |
76 | 98 |
|
77 | 99 | # Update the timestamp (the timeout for deletion uses this) and move it to the sent items folder
|
78 | 100 | $item.LastWriteTime = Get-Date
|
|
0 commit comments