Mailgun.Models.SignedEvent
1.0.1
See the version list below for details.
dotnet add package Mailgun.Models.SignedEvent --version 1.0.1
NuGet\Install-Package Mailgun.Models.SignedEvent -Version 1.0.1
<PackageReference Include="Mailgun.Models.SignedEvent" Version="1.0.1" />
paket add Mailgun.Models.SignedEvent --version 1.0.1
#r "nuget: Mailgun.Models.SignedEvent, 1.0.1"
// Install Mailgun.Models.SignedEvent as a Cake Addin #addin nuget:?package=Mailgun.Models.SignedEvent&version=1.0.1 // Install Mailgun.Models.SignedEvent as a Cake Tool #tool nuget:?package=Mailgun.Models.SignedEvent&version=1.0.1
Background
According to Mailgun they provide developer friendly transactional e-mail service. In spite of this claim there's still no official SDK for nearly any platform and their documentation often lacks basic information. However it's still one of the best options you have if you don't want to implement your own e-mail delivery service which can become very complex very quickly.
Once you have an account with them you can subscribe to various messaging events so when the appropriate event happens (eg. the e-mail was delivered or bounced) Mailgun will POST a JSON encoded object to the URL you provided.
This library was created to ease the burden of deserializing these events into POCOs and to provide an easy way to verify the cryptographic signature of an incoming packet.
Usage
Installation
Add this package as a dependency to your project using NuGet.
Example
Here's a practical example using ASP.NET Core 3.1:
using Mailgun.Models.SignedEvent;
...
[Route("[controller]")]
[ApiController]
public class DeliveredController : ControllerBase
{
[HttpPost]
public async Task<ActionResult<SignedEvent>> PostDelivered([FromBody] SignedEvent signedEvent)
{
// ASP.NET Core framework will automagically deserialize JSON into signedEvent (see notes at the bottom regarding caveats)
if (!signedEvent.Signature.IsValid("your-api-key"))
{
// if the signature is invalid, return 401
return Unauthorized();
}
// do something meaningful with signedEvent.Event here
// finally return 201 so Mailgun knows POST has been successful. Otherwise it'll keep retrying
return CreatedAtAction(nameof(PostDelivered), null);
}
}
A SignedEvent
contains a Signature
and the actual Event
. While not mandatory it's recommended to check the signature to make sure it was actually signed by Mailgun.
Since the signature is created using the signing server's own time you can specify how old a signature can be to still be considered as valid. By default this is set to 10 minutes.
Important Notes
Unusual JSON Naming Convention
Mailgun generates JSON data using an unusual naming convention with dashes between words. This means that the verb is valid
will be encoded as is-valid
even though the convention is to encode names as camelCase (resulting in isValid
).
There are ways to configure most JSON serializers to handle this, but this topic is out of scope of this project.
Structure Is Constantly Changing
Please note that these events can apparently change their structure anytime, so don't be surprised if the data you've just received contains new fields.
If you discover a change (which can only be an addition according to their documentation) you're welcome to open a PR.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- System.ComponentModel.Annotations (>= 4.7.0)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.ComponentModel.Annotations (>= 4.7.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Mailgun.Models.SignedEvent:
Package | Downloads |
---|---|
Mailgun.Middleware.AuthenticationHandler
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.