AxEmail 6.4.0.101

dotnet add package AxEmail --version 6.4.0.101
                    
NuGet\Install-Package AxEmail -Version 6.4.0.101
                    
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="AxEmail" Version="6.4.0.101" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AxEmail" Version="6.4.0.101" />
                    
Directory.Packages.props
<PackageReference Include="AxEmail" />
                    
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 AxEmail --version 6.4.0.101
                    
#r "nuget: AxEmail, 6.4.0.101"
                    
#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.
#:package AxEmail@6.4.0.101
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AxEmail&version=6.4.0.101
                    
Install as a Cake Addin
#tool nuget:?package=AxEmail&version=6.4.0.101
                    
Install as a Cake Tool

Thank you for choosing the Auron E-mail Component!

The Auron E-mail Component offers the following features:

  • Easy to use API
  • Support for SMTP, POP3 and IMAP;
  • OAUTH2 for all protocol;
  • Supports OAUTH2 authentication flow;
  • Parse, Load and Save MIME encoded emails;
  • Full TLS/SSL support on all protocols;
  • Customized search/fetch requests are supported for IMAP;
  • IPv6 support;
  • Excellent logging and tracing available for troubleshooting

How to use

Find the API reference here: https://www.auronsoftware.com/cat/email-component/auemail-api-reference/

Or download the full package which includes a number of working examples for C#, VB.Net, ASP.NET, C++, and more: https://www.auronsoftware.com/download/

Or check github for the source code to our examples: https://github.com/Auron-Software/AxEmail-Examples

Example: Sending out an E-mail using SMTP:

AxEmail.Smtp objSmtp = new AxEmail.Smtp();
AxEmail.Message objMail = new AxEmail.Message();

objSmtp.LogFile = "log.txt";

objSmtp.SetSecure();
objSmtp.Connect("smtp.gmail.com", "me@gmail.com", "password");
if (objSmtp.LastError != 0)
{
  Console.WriteLine("Error connecting: " + objSmtp.GetErrorDescription(objSmtp.LastError));
  return;
}

objMail.Subject = "Hi!";
objMail.BodyPlainText = "Hello, How are you doing?";
objMail.BodyHtml = "<html><body><h2>Hello</h2><p>How are you doing?</p></body></html>";
objMail.AddTo("someone@example.com", "Someone");

objSmtp.Send(objMail);
if (objSmtp.LastError != 0)
{
  Console.WriteLine("Error sending: " + objSmtp.GetErrorDescription(objSmtp.LastError));
  return;
}

objSmtp.Disconnect();

Example: Version and licensing information (C#)

AxEmail.Smtp objSmtp = new AxEmail.Smtp();

Console.WriteLine("Auron E-mail Component Version" + objSmtp.Version + 
  "; Build" + objSmtp.Build + "; Module" + objSmtp.Module);
Console.WriteLine("License Status:" + objSmtp.LicenseStatus);

Support

Any questions or need an extension of the trial period? Please send us an email at: support@Auron.com

Pricing and purchasing

This product is a fully functional 30 day trail.

Find more information about pricing and how to purchase or our sales page: https://www.auronsoftware.com/sales/

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
6.4.0.101 88 2/4/2026
6.3.2.1001 225 10/31/2025
6.3.2.902 161 10/10/2025
6.3.2.601 279 6/4/2025
6.3.2.101 229 1/15/2025
6.3.0.701 238 7/29/2024
6.3.0.501 232 6/12/2024
6.3.0.302 217 6/5/2024
6.3.0.301 249 3/6/2024
6.2.0.801 363 8/2/2023
6.2.0.601 288 6/21/2023
6.2.0.402 350 4/27/2023
6.1.1.302 404 3/21/2023
6.1.1.203 443 2/13/2023
6.1.1.101 496 1/12/2023
6.1.0.1201 461 12/15/2022
6.1.0.1101 496 11/28/2022
6.0.3.1101 505 11/9/2022
6.0.3.802 578 10/19/2022
6.0.3.601 617 6/22/2022
6.0.1.303 640 3/23/2022
6.0.0.302 609 3/10/2022
5.1.0.101 662 1/21/2021
5.0.3.701 780 7/22/2020
5.0.3.302 727 3/28/2020
5.0.2.301 716 3/20/2020
5.0.2.101 800 1/10/2020
5.0.1.9014 1,399 1/16/2019
5.0.1.9012 1,278 1/14/2019
5.0.1.9011 1,264 1/12/2019
5.0.0.8122 1,281 1/11/2019