AxEmail 6.4.0.201

dotnet add package AxEmail --version 6.4.0.201
                    
NuGet\Install-Package AxEmail -Version 6.4.0.201
                    
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.201" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AxEmail" Version="6.4.0.201" />
                    
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.201
                    
#r "nuget: AxEmail, 6.4.0.201"
                    
#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.201
                    
#: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.201
                    
Install as a Cake Addin
#tool nuget:?package=AxEmail&version=6.4.0.201
                    
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.201 32 2/13/2026
6.4.0.101 95 2/4/2026
6.3.2.1001 227 10/31/2025
6.3.2.902 162 10/10/2025
6.3.2.601 280 6/4/2025
6.3.2.101 231 1/15/2025
6.3.0.701 241 7/29/2024
6.3.0.501 233 6/12/2024
6.3.0.302 218 6/5/2024
6.3.0.301 250 3/6/2024
6.2.0.801 364 8/2/2023
6.2.0.601 289 6/21/2023
6.2.0.402 351 4/27/2023
6.1.1.302 406 3/21/2023
6.1.1.203 444 2/13/2023
6.1.1.101 497 1/12/2023
6.1.0.1201 463 12/15/2022
6.1.0.1101 498 11/28/2022
6.0.3.1101 506 11/9/2022
6.0.3.802 579 10/19/2022
Loading failed