Skip to content

Releases: EvotecIT/Mailozaurr

v1.0.1

19 Jul 13:27
cc806a2

Choose a tag to compare

Update module builder

v1.0.0

20 Dec 14:34
fdd8029

Choose a tag to compare

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 on Send-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 @sendEmailMessageSplat

Full Changelog: v0.9.0...v1.0.0

v0.9.0

02 Oct 17:08
6d57f68

Choose a tag to compare

Update changelog

v0.0.25

07 Jun 09:03
2f0c310

Choose a tag to compare

updated changelog

v0.0.24

24 Jan 17:22
653443d

Choose a tag to compare

Bump version

v0.0.23

22 Jan 10:22
e36db5d

Choose a tag to compare

Improvements to logging

- added LogConsole
- added LogObject
Improvements to Troublshooting
- added LocalDomain parameter

v0.0.22

21 Jan 20:13
c13f87a

Choose a tag to compare

Merge branch 'master' of https://github.com/EvotecIT/Mailozaurr

v0.0.21

07 Jan 08:17
5aeaf9d

Choose a tag to compare

Version bump

v0.0.20

02 Jan 13:11
bb60c17

Choose a tag to compare

PSD1 update

v0.0.19

25 Dec 12:12
fa03830

Choose a tag to compare

Version bump