pvWay.MailJetClientNuGet.nc6
1.0.1
dotnet add package pvWay.MailJetClientNuGet.nc6 --version 1.0.1
NuGet\Install-Package pvWay.MailJetClientNuGet.nc6 -Version 1.0.1
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="pvWay.MailJetClientNuGet.nc6" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add pvWay.MailJetClientNuGet.nc6 --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: pvWay.MailJetClientNuGet.nc6, 1.0.1"
#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 pvWay.MailJetClientNuGet.nc6 as a Cake Addin #addin nuget:?package=pvWay.MailJetClientNuGet.nc6&version=1.0.1 // Install pvWay.MailJetClientNuGet.nc6 as a Cake Tool #tool nuget:?package=pvWay.MailJetClientNuGet.nc6&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MailJet API Client for .Net Core 6 by pvWay
Preconditions
For using this nuGet you should obviously dispose of a MailJet account.
Usage
Interfaces
public interface IMailJetClient
{
/// <summary>
/// Post a mail using a template via the MailJet REST interface
/// </summary>
/// <param name="templateId">The unique id of you MailJet template</param>
/// <param name="fromEmail">The email of the sender</param>
/// <param name="fromName">The name of the sender</param>
/// <param name="toEmail">The email of the addressee</param>
/// <param name="toName">The name of the addressee</param>
/// <param name="variables">key value dictionary with your MailJet template variables</param>
/// <param name="subject"></param>
/// <returns>IMailJetSendResult or null on failure</returns>
Task<IMailJetSendResult> SendTemplateAsync(
int templateId,
string fromEmail, string fromName,
string toEmail, string toName,
IDictionary<string, string> variables = null,
string subject = null);
}
Constructor
From the business layer of your application you start by instanciating the MailJet client
var mjClient = new MailJetClient(
apiKey: "******", // replace with your own MailJet ApiKey
apiSecret:"******", // replace with your own MailJet ApiSecret
logError: Console.WriteLine); // using Console as Logger
Posting an email using a MailJet template
IMailJetSendResult res = mjClient.SendTemplateAsync(
templateId: 12345678,
fromEmail: "invoicing@pvway.com",
fromName: "pvWay SRL",
toEmail: "someOne@someDomain",
toName: "Mr someOne",
variables: new Dictionary<string, string>
{
{"invoiceNumber", "202015436"},
{"invoiceDate", "2020 Dec 25"},
{"product", "Merry Christmas Gift"},
{"price", "$ 125.33"}
},
// use the default template subject
subject: null)
.Result;
if (res.Success)
{
foreach (var resMessage in res.Messages)
{
Console.WriteLine($"status: {resMessage.Status}");
foreach (var recipientRes in resMessage.To)
{
Console.WriteLine(
$"{recipientRes.Email} - {recipientRes.MessageUuid}");
}
}
}
else
{
Console.WriteLine(res.Exception);
}
Happy coding 😃
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
upgrade newtonsoft version