Mail.dll 3.0.17312.2008

Additional Details

Please update to the latest version.

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Mail.dll --version 3.0.17312.2008
NuGet\Install-Package Mail.dll -Version 3.0.17312.2008
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="Mail.dll" Version="3.0.17312.2008" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mail.dll --version 3.0.17312.2008
#r "nuget: Mail.dll, 3.0.17312.2008"
#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 Mail.dll as a Cake Addin
#addin nuget:?package=Mail.dll&version=3.0.17312.2008

// Install Mail.dll as a Cake Tool
#tool nuget:?package=Mail.dll&version=3.0.17312.2008

Quick start samples

IMAP

using(Imap imap = new Imap())
{
       imap.Connect("imap.server.com");  // or ConnectSSL for SSL/TLS
       imap.UseBestLogin("user", "password");
       imap.SelectInbox();
       List<long> uids = imap.Search(Flag.Unseen);
       foreach (long uid in uids)
       {
           IMail email = new MailBuilder()
               .CreateFromEml(imap.GetMessageByUID(uid));

           Console.WriteLine(email.Subject);
       }
       imap.Close();
}

POP3

using(Pop3 pop3 = new Pop3())
{
    pop3.Connect("pop3.server.com");  // or ConnectSSL for SSL /TLS     
    pop3.UseBestLogin("user", "password");
    List<string> uids = pop3.GetAll();
    foreach (string uid in uids)
    {
        IMail email = new MailBuilder()
            .CreateFromEml(pop3.GetMessageByUID(uid));

        Console.WriteLine(email.Subject);
    }
    pop3.Close();
} 
Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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 (4)

Showing the top 4 NuGet packages that depend on Mail.dll:

Package Downloads
OElite.Web

OElite Web API SDK for OElite Platform based application development

Soneta.CRM The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Składnik programu Soneta. Program obsługi firmy: kadry-płace, księgowość, handel, magazyn, CRM, BI ...

MepApps.Svr.Ctl

Mep Apps Inc. Server Controls

MepApps.Svr.Internal

Mep Apps Inc. Cloud Internals

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.24030.1216 24,690 1/30/2024
3.0.23283.1813 12,138 10/10/2023
3.0.23156.1704 27,204 6/5/2023
3.0.23025.1850 163,160 1/25/2023
3.0.23002.841 2,007 1/2/2023
3.0.22293.1001 84,105 10/20/2022
3.0.22269.1117 5,161 9/26/2022
3.0.22234.1038 41,253 8/22/2022
3.0.22105.1207 32,256 4/15/2022
3.0.22035.1741 34,557 2/4/2022