Edi.TemplateEmail 2025.3.0

dotnet add package Edi.TemplateEmail --version 2025.3.0
                    
NuGet\Install-Package Edi.TemplateEmail -Version 2025.3.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="2025.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Edi.TemplateEmail" Version="2025.3.0" />
                    
Directory.Packages.props
<PackageReference Include="Edi.TemplateEmail" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Edi.TemplateEmail --version 2025.3.0
                    
#r "nuget: Edi.TemplateEmail, 2025.3.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.
#addin nuget:?package=Edi.TemplateEmail&version=2025.3.0
                    
Install Edi.TemplateEmail as a Cake Addin
#tool nuget:?package=Edi.TemplateEmail&version=2025.3.0
                    
Install Edi.TemplateEmail as a Cake Tool

Edi.TemplateEmail

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

Currently, only SMTP Basic Authentication is supported.

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.example.com";
var userName = "test1@example.com";
var password = "********";
var port = 25;
var toAddress = "test2@test.com";

var configSource = $"{Directory.GetCurrentDirectory()}\\mailConfiguration.xml";
var emailHelper = new EmailHelper(configSource, new(smtpServer, userName, password, port)
{
    SenderName = senderName,
    EmailDisplayName = displayName
});

Step 3: Map the values and send Email

var message = 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)
    .BuildMessage([toAddress]);

var result = await message.SendAsync();
Product Compatible and additional computed target framework versions.
.NET 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.  net9.0 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
2025.3.0 128 6/6/2025
2025.2.0 180 2/25/2025
2025.1.0 109 1/6/2025
2024.6.0 142 11/13/2024
2024.5.0 148 10/11/2024
2024.4.0 108 10/10/2024
2024.3.0 114 10/10/2024
2024.2.1 108 10/8/2024
2024.2.0 166 8/7/2024
2024.1.0 382 5/18/2024
2023.4.3 148 4/15/2024
2023.4.2 594 3/4/2024
2023.4.1 2,931 11/13/2023
2023.4.0 967 10/11/2023
2023.3.0 173 9/5/2023
2023.2.2 211 6/19/2023
2023.2.1 176 6/11/2023
2023.2.0 217 4/29/2023
2023.1.1 272 3/15/2023
2023.1.0 308 2/17/2023
2022.5.1 379 12/2/2022
2022.5.0 369 11/9/2022
2022.4.4 419 10/27/2022
2022.4.3 836 9/13/2022
2022.4.2 580 9/7/2022
2022.4.1 491 8/6/2022
2022.4.0 490 6/20/2022
2022.3.0 551 4/15/2022
2022.2.1 517 4/15/2022
2022.2.0 501 4/15/2022
2022.1.0 519 2/9/2022
2021.2.0 495 10/21/2021
2021.1.2 2,214 5/18/2021
2021.1.1 434 4/22/2021
2021.1.0 497 1/27/2021
2020.3.1 561 11/27/2020
2020.3.0 539 11/11/2020
2020.2.4 564 9/15/2020
2020.2.3 625 7/15/2020
2020.2.2 651 6/22/2020
2020.2.1 623 6/10/2020
2020.2.0 591 4/26/2020
2020.1.1 702 3/25/2020
2020.1.0 636 2/20/2020
2019.2.2 683 12/4/2019
2019.2.1 642 10/2/2019