-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be07085
commit c201c73
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,9 @@ function Set-MDMail | |
.PARAMETER Cc | ||
Additional addresses to keep in the information flow. | ||
.PARAMETER Bcc | ||
Additional addresses to keep silently informed | ||
.PARAMETER Subject | ||
The subject to send the email under. | ||
|
@@ -44,6 +47,9 @@ function Set-MDMail | |
.PARAMETER NotBefore | ||
Do not send this email before this timestamp has come to pass. | ||
.PARAMETER Priority | ||
The priority of the email | ||
.EXAMPLE | ||
PS C:\> Set-MDMail -From '[email protected]' -To '[email protected]' -Subject 'Daily Update Report' -Body $body | ||
|
@@ -80,7 +86,7 @@ function Set-MDMail | |
$RemoveAttachments, | ||
|
||
[datetime] | ||
$NotBefore, | ||
$NotBefore, | ||
|
||
[MailPriority] | ||
$Priority | ||
|