SendWithMailgun 1.1.5

dotnet add package SendWithMailgun --version 1.1.5
NuGet\Install-Package SendWithMailgun -Version 1.1.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SendWithMailgun" Version="1.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SendWithMailgun --version 1.1.5
#r "nuget: SendWithMailgun, 1.1.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SendWithMailgun as a Cake Addin
#addin nuget:?package=SendWithMailgun&version=1.1.5

// Install SendWithMailgun as a Cake Tool
#tool nuget:?package=SendWithMailgun&version=1.1.5

alt tag

SendWithMailgun

NuGet Version NuGet

SendWithMailgun is a really small class library with only one goal in mind: sending an email with Mailgun. That's it. Need other features? Not here, sorry 😦

New in v1.0.0

  • Initial release.

Help or feedback

First things first - do you need help or have feedback? File an issue! Happy to help.

Simple Example

using SendWithMailgun;

MailgunSender sender = new MailgunSender("[mydomain.com", "[apikey]");
sender.Logger = Console.WriteLine; // if you want log messages

string id = null;
id = sender.Send("to", "from", "subject", "body");       // text
id = sender.Send("to", "from", "subject", "html", true); // html
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.5 341 10/3/2023
1.1.2 329 9/10/2023
1.1.1 2,031 7/23/2023
1.1.0 204 7/22/2023
1.0.0.5 6,663 11/12/2021
1.0.0.4 2,748 9/16/2021
1.0.0.3 1,207 8/14/2021
1.0.0.2 567 7/28/2021
1.0.0.1 1,368 5/23/2021
1.0.0 318 5/23/2021

Add email validation.