Mailozaurr is a PowerShell module that aims to provide SMTP, POP3, IMAP and few other ways to interact with Email. Underneath it uses MimeKit and MailKit and EmailValidation libraries written by Jeffrey Stedfast.
For oAuth2 it also requires some Microsoft and Google libraries that are also bundled in
Finally since Resolve-DNSName
is Windows specific I'm using:
This started with a single goal to replace Send-MailMessage
which is depracated/obsolete with something more modern, but since MailKit and MimeKit have lots of options why not build on that?
Install-Module -Name Mailozaurr -AllowClobber -Force
Force and AllowClobber aren't necessary, but they do skip errors in case some appear.
Update-Module -Name Mailozaurr
That's it. Whenever there's a new version, you run the command, and you can enjoy it. Remember that you may need to close, reopen PowerShell session if you have already used module before updating it.
The essential thing is if something works for you on production, keep using it till you test the new version on a test computer. I do changes that may not be big, but big enough that auto-update may break your code. For example, a small rename to a parameter, and your code stops working! Be responsible!
- 0.0.3 - 2020.07.26
- Added
Test-EmailAddress
- Added
Connect-OAuthGoogle
- Added
Connect-OAuthO365
- Added
Resolve-DNSQuery
- Added
- 0.0.2 - 2020.07.25
- Added
Find-MXRecord
- Added
Find-DMARCRecord
- Added
Find-DKIMRecord
- Added
Find-SPFRecord
- Added
- 0.0.1 - 2020.06.13
- Initial release