Edi.TemplateEmail 2023.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Edi.TemplateEmail --version 2023.4.0
NuGet\Install-Package Edi.TemplateEmail -Version 2023.4.0
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="Edi.TemplateEmail" Version="2023.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Edi.TemplateEmail --version 2023.4.0
#r "nuget: Edi.TemplateEmail, 2023.4.0"
#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 Edi.TemplateEmail as a Cake Addin
#addin nuget:?package=Edi.TemplateEmail&version=2023.4.0

// Install Edi.TemplateEmail as a Cake Tool
#tool nuget:?package=Edi.TemplateEmail&version=2023.4.0

Edi.TemplateEmail

This library enable you to configure email in XML template and send the email in your .NET Core applications.

.NET Core

NuGet

Install

dotnet add package Edi.TemplateEmail

Usage

Step 1: Put a mailConfiguration.xml somewhere you like

<?xml version="1.0"?>
<MailConfiguration>
  <CommonConfiguration OverrideToAddress="false" ToAddress="overridetest@test.com" />
  <MailMessage MessageType="TestMail" IsHtml="true">
    <MessageSubject>Test Mail on {MachineName.Value}</MessageSubject>
    <MessageBody>
      <![CDATA[
Mail configuration on {MachineName.Value} is good: <br />
Smtp Server: {SmtpServer.Value}<br />
Smtp Port: {SmtpServerPort.Value}<br />
Smtp Username: {SmtpUserName.Value}<br />
Email Display Name: {EmailDisplayName.Value}<br />
Enable SSL: {EnableSsl.Value}<br />
      ]]>
    </MessageBody>
  </MailMessage>
</MailConfiguration>

Step 2:

Initialize the EmailHelper by your mail server settings

// Change these values
var smtpServer = "smtp-mail.outlook.com";
var userName = "Edi.Test@outlook.com";
var password = "";
var port = 587;
var toAddress = "Edi.Wang@outlook.com";

var configSource = $"{Directory.GetCurrentDirectory()}\\mailConfiguration.xml";
var emailHelper = new EmailHelper(configSource, smtpServer, userName, password, port)
     .WithTls()
     .WithSenderName("Test Sender")
     .WithDisplayName("Edi.TemplateEmail.TestConsole");

You can also add event handlers

emailHelper.EmailSent += (sender, eventArgs) =>
{
    Console.WriteLine($"Email is sent, Success: {eventArgs.IsSuccess}, Response: {eventArgs.ServerResponse}");
};
emailHelper.EmailFailed += (sender, eventArgs) => Console.WriteLine("Failed");
emailHelper.EmailCompleted += (sender, e) => Console.WriteLine("Completed.");

Step 3: Map the values and send Email

await emailHelper.ForType("TestMail")
                 .Map("MachineName", Environment.MachineName)
                 .Map("SmtpServer", emailHelper.Settings.SmtpServer)
                 .Map("SmtpServerPort", emailHelper.Settings.SmtpServerPort)
                 .Map("SmtpUserName", emailHelper.Settings.SmtpUserName)
                 .Map("EmailDisplayName", emailHelper.Settings.EmailDisplayName)
                 .Map("EnableTls", emailHelper.Settings.EnableTls)
                 .SendAsync(toAddress);
Product 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 is compatible.  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. 
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
2023.4.3 91 4/15/2024
2023.4.2 546 3/4/2024
2023.4.1 2,886 11/13/2023
2023.4.0 911 10/11/2023
2023.3.0 132 9/5/2023
2023.2.2 167 6/19/2023
2023.2.1 129 6/11/2023
2023.2.0 166 4/29/2023
2023.1.1 225 3/15/2023
2023.1.0 268 2/17/2023
2022.5.1 327 12/2/2022
2022.5.0 316 11/9/2022
2022.4.4 363 10/27/2022
2022.4.3 780 9/13/2022
2022.4.2 523 9/7/2022
2022.4.1 426 8/6/2022
2022.4.0 429 6/20/2022
2022.3.0 484 4/15/2022
2022.2.1 452 4/15/2022
2022.2.0 434 4/15/2022
2022.1.0 452 2/9/2022
2021.2.0 423 10/21/2021
2021.1.2 2,140 5/18/2021
2021.1.1 366 4/22/2021
2021.1.0 434 1/27/2021
2020.3.1 479 11/27/2020
2020.3.0 452 11/11/2020
2020.2.4 483 9/15/2020
2020.2.3 542 7/15/2020
2020.2.2 572 6/22/2020
2020.2.1 544 6/10/2020
2020.2.0 507 4/26/2020
2020.1.1 616 3/25/2020
2020.1.0 550 2/20/2020
2019.2.2 591 12/4/2019
2019.2.1 557 10/2/2019