Send-MailKitMessage icon indicating copy to clipboard operation
Send-MailKitMessage copied to clipboard

A replacement for PowerShell's obsolete Send-MailMessage implementing the Microsoft-recommended MailKit library.

Results 16 Send-MailKitMessage issues
Sort by recently updated
recently updated
newest added

I followed the example to create a send a message. Here is an excerpt from the code: > $Recipients = [MimeKit.InternetAddressList]::new > $Recipients.add([MimeKit.InternetAddress]"[email protected]") This produces the error below: > 9...

Hi, Can you please check and confirm if module works with PowerShell core on Linux? I have been trying to use the module on multi OS infra, however it fails...

Hi, Is there any way to add a Reply-To address ? Or it's not supported ? Thank's for your awesome module ! 😁 Valentin

When using Az.KeyVault in Combination with Send-MailKiTMessage the command `Import-Module` throws: ``` Import-Module: C:\Temp\d5plgr21.aue\484853eb-9c26-4659-ac55-ff53e9138976.ps1:2 Line | 2 | Import-Module Az.Keyvault | ~~~~~~~~~~~~~~~~~~~~~~~~~ | Assembly with same name is already loaded...

I have added three more parameters to the code I needed. You can find it in my Git fork. Should I push the pull request to your master branch, or...

It would be very beneficial to include help information for the command with examples. Don't force the user to find the README doc in this repository. You can use the...

Hello, Is it possible to make the [decoding](https://github.com/austineric/Send-MailKitMessage/blob/master/Project/Send_MailKitMessage.cs#L142) of HTML in HTMLBody optional? ``` Body.HtmlBody = HttpUtility.HtmlDecode(HTMLBody); //decode html in case it was encoded along the way ``` I am...

In Send-MailMessage there is the posibility to add a -priority attribute. Can this be made availble in Send-MailKitMessage?

The main changes made are - Updated modules, removed old module (name changed) - Added BounceCastle version 2.4.0 - Removed Portable.BouncyCastle 1.8.10 - Updated MailKit to 4.7.1.1 - Updated MimeKit...