Releases: EvotecIT/Mailozaurr
Releases · EvotecIT/Mailozaurr
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
MgGraphRequestswitch 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 = 'przemyslaw.klys@test.pl'
To = 'przemyslaw.klys@test.pl'
HTML = $Body
Subject = 'This tests email as delegated'
MgGraphRequest = $true
Verbose = $true
}
Send-EmailMessage @sendEmailMessageSplatFull 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
v0.0.22
Merge branch 'master' of https://github.com/EvotecIT/Mailozaurr
v0.0.21
Version bump
v0.0.20
PSD1 update
v0.0.19
Version bump