Mailozaurr Versions Save

Mailozaurr is a PowerShell module that aims to provide SMTP, POP3, IMAP and probably some other ways to interact with Email. Underneath it uses MimeKit and MailKit libraries written by Jeffrey Stedfast.

v2.0.0-Preview4

3 months ago

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: https://github.com/EvotecIT/Mailozaurr/compare/v1.0.2...v2.0.0-Preview4

v1.0.2

10 months ago

What's new

  • Rename SkipCertificateValidatation to SkipCertificateValidation in Send-EmailMessage (typo fix)
  • Added SkipCertificateValidation to Connect-IMAP
  • Added SkipCertificateValidation to Connect-POP3
  • Added SkipCertificateRevocation to Connect-IMAP
  • Added SkipCertificateRevocation to Connect-POP3
  • Use simpler certificate validation callback by @jborean93 in https://github.com/EvotecIT/Mailozaurr/pull/42

New Contributors

Full Changelog: https://github.com/EvotecIT/Mailozaurr/compare/v1.0.1...v1.0.2

v1.0.1

10 months ago

v1.0.0

1 year ago

What's Changed

  • Add support for delegated sending using Microsoft Graph (Connect-MgGraph) by @PrzemyslawKlys in https://github.com/EvotecIT/Mailozaurr/pull/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           = '[email protected]'
    To             = '[email protected]'
    HTML           = $Body
    Subject        = 'This tests email as delegated'
    MgGraphRequest = $true
    Verbose        = $true
}
Send-EmailMessage @sendEmailMessageSplat

Full Changelog: https://github.com/EvotecIT/Mailozaurr/compare/v0.9.0...v1.0.0

v0.9.0

1 year ago

v0.0.25

2 years ago

v0.0.24

2 years ago

v0.0.23

2 years ago

v0.0.22

2 years ago

v0.0.21

2 years ago