Skip to content

Commit ad55ae3

Browse files
Merge pull request #11 from PowershellFrameworkCollective/development
1.1.3
2 parents 633f206 + c201c73 commit ad55ae3

File tree

5 files changed

+71
-10
lines changed

5 files changed

+71
-10
lines changed

MailDaemon/MailDaemon.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
RootModule = 'MailDaemon.psm1'
44

55
# Version number of this module.
6-
ModuleVersion = '1.0.1'
6+
ModuleVersion = '1.1.3'
77

88
# ID used to uniquely identify this module
99
GUID = 'd5ba333f-5210-4d69-83f0-150dd0909139'
@@ -26,7 +26,7 @@
2626
# Modules that must be imported into the global environment prior to importing
2727
# this module
2828
RequiredModules = @(
29-
@{ ModuleName='PSFramework'; ModuleVersion='1.9.310' }
29+
@{ ModuleName='PSFramework'; ModuleVersion='1.12.346' }
3030
)
3131

3232
# Assemblies that must be loaded prior to importing this module

MailDaemon/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.1.3 (2024-11-11)
4+
5+
+ Upd: Added ability to directly embed attachments in the email task, rather than only providing a path to them. (thanks @jebbster88 ; #10)
6+
+ Upd: Added ability to specify mail priority. (thanks @jebbster88 ; #10)
7+
38
## 1.0.1 (2023-10-06)
49

510
+ Fix: Invoke-MDDaemon - errors trying to multiply timespan

MailDaemon/functions/Invoke-MDDaemon.ps1

+24-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
process
3737
{
3838
#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"))
4040
{
4141
$email = Import-Clixml -Path $item.FullName
4242
# Skip emails that should not yet be processed
@@ -53,11 +53,29 @@
5353
if ($email.From) { $parameters["From"] = $email.From }
5454
else { $parameters["From"] = Get-PSFConfigValue -FullName 'MailDaemon.Daemon.SenderDefault' }
5555
if ($email.Cc) { $parameters["Cc"] = $email.Cc }
56+
if ($email.Bcc) { $parameters["Bcc"] = $email.Bcc }
5657
if ($email.Subject) { $parameters["Subject"] = $email.Subject }
5758
else { $parameters["Subject"] = "<no subject>" }
59+
if ($email.Priority) {$parameters["Priority"] = $email.Priority}
5860
if ($email.Body) { $parameters["Body"] = $email.Body }
5961
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+
}
6179
if ($script:_Config.SenderCredentialPath) { $parameters["Credential"] = Import-Clixml (Get-PSFConfigValue -FullName 'MailDaemon.Daemon.SenderCredentialPath') }
6280

6381
Write-PSFMessage -Level Verbose -String 'Invoke-MDDaemon.SendMail.Start' -StringValues @($email.Taskname, $parameters['Subject'], $parameters['From'], ($parameters['To'] -join ",")) -Target $email.Taskname
@@ -73,6 +91,10 @@
7391
Remove-Item $attachment -Force
7492
}
7593
}
94+
# Remove temp deserialized attachments if used
95+
if ($email.AttachmentsBinary) {
96+
$null = remove-item -Path $tempAttachmentParentDir -Recurse -Force
97+
}
7698

7799
# Update the timestamp (the timeout for deletion uses this) and move it to the sent items folder
78100
$item.LastWriteTime = Get-Date

MailDaemon/functions/Send-MDMail.ps1

+16-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
Name of the task that is sending the email.
1212
Used in the name of the file used to queue messages in order to reduce likelyhood of accidental clash.
1313
14+
.PARAMETER PersistAttachments
15+
Attachments will be serialized with the queued email allowing the source files to be removed immediately.
16+
1417
.EXAMPLE
1518
PS C:\> Send-MDMail -TaskName "Logrotate"
1619
@@ -20,7 +23,8 @@
2023
Param (
2124
[Parameter(Mandatory = $true)]
2225
[string]
23-
$TaskName
26+
$TaskName,
27+
[switch]$PersistAttachments
2428
)
2529

2630
begin
@@ -42,9 +46,19 @@
4246

4347
$script:mail['Taskname'] = $TaskName
4448

49+
if ($PersistAttachments) {
50+
# Add the attachments bytes to the mail object
51+
if (-not $script:mail["AttachmentsBinary"]) {
52+
$script:mail["AttachmentsBinary"] = @()
53+
}
54+
foreach ($attachment in $script:mail['Attachments']) {
55+
$script:mail['AttachmentsBinary'] = @($script:mail['AttachmentsBinary']) + @{Name = (split-path -Path $attachment -Leaf); Data = [System.IO.File]::ReadAllBytes($attachment)}
56+
}
57+
}
58+
4559
# Send the email
4660
Write-PSFMessage -String 'Send-MDMail.Email.Sending' -StringValues $TaskName -Target $TaskName
47-
try { [PSCustomObject]$script:mail | Export-Clixml -Path "$(Get-PSFConfigValue -FullName 'MailDaemon.Daemon.MailPickupPath')\$($TaskName)-$(Get-Date -Format 'yyyy-MM-dd_HH-mm-ss').clixml" -ErrorAction Stop }
61+
try { [PSCustomObject]$script:mail | Export-Clixml -Path "$(Get-PSFConfigValue -FullName 'MailDaemon.Daemon.MailPickupPath')\$($TaskName)-$(Get-Date -Format 'yyyy-MM-dd_HH-mm-ss').clixml" -Depth 4 -ErrorAction Stop }
4862
catch
4963
{
5064
Stop-PSFFunction -String 'Send-MDMail.Email.SendingFailed' -StringValues $TaskName -ErrorRecord $_ -Cmdlet $PSCmdlet -EnableException $true -Target $TaskName

MailDaemon/functions/Set-MDMail.ps1

+24-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
function Set-MDMail
1+
enum MailPriority {
2+
Normal
3+
Low
4+
High
5+
}
6+
7+
function Set-MDMail
28
{
39
<#
410
.SYNOPSIS
@@ -16,6 +22,9 @@
1622
.PARAMETER Cc
1723
Additional addresses to keep in the information flow.
1824
25+
.PARAMETER Bcc
26+
Additional addresses to keep silently informed
27+
1928
.PARAMETER Subject
2029
The subject to send the email under.
2130
@@ -38,6 +47,9 @@
3847
.PARAMETER NotBefore
3948
Do not send this email before this timestamp has come to pass.
4049
50+
.PARAMETER Priority
51+
The priority of the email
52+
4153
.EXAMPLE
4254
PS C:\> Set-MDMail -From '[email protected]' -To '[email protected]' -Subject 'Daily Update Report' -Body $body
4355
@@ -49,12 +61,15 @@
4961
[string]
5062
$From,
5163

52-
[string]
64+
[string[]]
5365
$To,
5466

5567
[string[]]
5668
$Cc,
5769

70+
[string[]]
71+
$Bcc,
72+
5873
[string]
5974
$Subject,
6075

@@ -64,14 +79,17 @@
6479
[switch]
6580
$BodyAsHtml,
6681

67-
[string]
82+
[string[]]
6883
$Attachments,
6984

7085
[switch]
7186
$RemoveAttachments,
7287

7388
[datetime]
74-
$NotBefore
89+
$NotBefore,
90+
91+
[MailPriority]
92+
$Priority
7593
)
7694

7795
begin
@@ -86,11 +104,13 @@
86104
if ($From) { $script:mail["From"] = $From }
87105
if ($To) { $script:mail["To"] = $To }
88106
if ($Cc) { $script:mail["Cc"] = $Cc }
107+
if ($Bcc) { $script:mail["Bcc"] = $Bcc }
89108
if ($Subject) { $script:mail["Subject"] = $Subject }
90109
if ($Body) { $script:mail["Body"] = $Body }
91110
if ($BodyAsHtml.IsPresent) { $script:mail["BodyAsHtml"] = ([bool]$BodyAsHtml) }
92111
if ($Attachments) { $script:mail["Attachments"] = $Attachments }
93112
if ($RemoveAttachments.IsPresent) { $script:mail["RemoveAttachments"] = ([bool]$RemoveAttachments) }
94113
if ($NotBefore) { $script:mail["NotBefore"] = $NotBefore }
114+
if ($Priority) { $script:mail["Priority"] = $Priority }
95115
}
96116
}

0 commit comments

Comments
 (0)