Releases: EvotecIT/Mailozaurr
Releases · EvotecIT/Mailozaurr
v1.0.4
v1.0.3
What's Changed
- Bump DLLs to most recent versions before 2.0 by @PrzemyslawKlys in #57
Full Changelog: v1.0.2...v1.0.3
v2.0.0-Preview4
What's new
- Update to DLLs to latest versions
- Removes some unnessecary DLLs
- Different way to build module and load depenedencies
- Removal of DLLs from source codes
- Small updates to DLLs
- Add new DLLs
- Added
ConvertFrom-EmlToMsg
to convert EML files to MSG files - Added
Import-MailFile
to import MSG/EML files to PowerShell Object - Added
Get-MailMessage
- Added
Get-MailMessageAttachment
- Added
Find-BIMIRecord
- Added
Find-CAARecord
- Added
Find-DANERecord
- Added
Find-MTASTSRecord
- Added
Find-O365OpenIDRecord
- Added
Find-SecurityTxtRecord
- Added
Find-TLSRPTRecord
- Added
Find-DNSSECRecord
- Improve
Find-DMARCRecord
to return more data - Added
Get-DMARCData
to read DMARC data from XML files - Added
Find-IPGeolocation
to get IP Geolocation data - Small improvements to error handling
Full Changelog: v1.0.2...v2.0.0-Preview4
v1.0.2
What's new
- Rename
SkipCertificateValidatation
toSkipCertificateValidation
inSend-EmailMessage
(typo fix) - Added
SkipCertificateValidation
toConnect-IMAP
- Added
SkipCertificateValidation
toConnect-POP3
- Added
SkipCertificateRevocation
toConnect-IMAP
- Added
SkipCertificateRevocation
toConnect-POP3
- Use simpler certificate validation callback by @jborean93 in #42
New Contributors
- @jborean93 made their first contribution in #42
Full Changelog: v1.0.1...v1.0.2
v1.0.1
Update module builder
v1.0.0
What's Changed
- Add support for delegated sending using Microsoft Graph (Connect-MgGraph) by @PrzemyslawKlys in #38 - It uses Microsoft.Graph.Authentication module and
MgGraphRequest
switch onSend-EmailMessage
.
Import-Module Mailozaurr
Import-Module Microsoft.Graph.Authentication -Force
# this shows how to send email using combination of Mailozaurr and Microsoft.Graph to use Connect-MgGraph to authorize
$Body = EmailBody {
New-HTMLText -Text "This is test of Connect-MGGraph functionality"
}
# authorize via Connect-MgGraph with delegated rights or any other supported method
Connect-MgGraph -Scopes Mail.Send
# sending email
$sendEmailMessageSplat = @{
From = '[email protected]'
To = '[email protected]'
HTML = $Body
Subject = 'This tests email as delegated'
MgGraphRequest = $true
Verbose = $true
}
Send-EmailMessage @sendEmailMessageSplat
Full Changelog: v0.9.0...v1.0.0
v0.9.0
Update changelog
v0.0.25
updated changelog
v0.0.24
Bump version
v0.0.23
Improvements to logging - added LogConsole - added LogObject Improvements to Troublshooting - added LocalDomain parameter