NTDTeam 1.0.0

dotnet add package NTDTeam --version 1.0.0
NuGet\Install-Package NTDTeam -Version 1.0.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="NTDTeam" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NTDTeam --version 1.0.0
#r "nuget: NTDTeam, 1.0.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 NTDTeam as a Cake Addin
#addin nuget:?package=NTDTeam&version=1.0.0

// Install NTDTeam as a Cake Tool
#tool nuget:?package=NTDTeam&version=1.0.0

<div id="top"></div>

<br /> <div align="center"> <a href="https://github.com/othneildrew/Best-README-Template"> <img src="image/mail.ico" alt="Logo" width="80" height="80"> </a>

<h3 align="center">Read Hotmail Using IMAP</h3>

<p align="center"> NTDTeam is a Library Support Read Hotmail and Outlook by IMAP Easier <br /> <a href=""><strong>Explore the docs »</strong></a> <br /> <br /> <a href="https://yansoftware.vn/">Visit My Website</a> · <a href="https://www.facebook.com/YanNguyenDev.Official">Contact Me</a> · <a href="https://api.yansoftware.vn/">Free API</a> </p> </div>

About The Project

<div align="center"> <a href="https://www.facebook.com/YanNguyenDev.Official"> <img src="image/manhinh.png"> </a> <p>NTDTeam is a Library Support Read Hotmail and Outlook by IMAP Easier. The library will read the mail and return the result as the content of the email in HTML form to convenient REGEX the data !!!</p> </div>

Getting Started

Installation via NuGet

  • METHOD 1: Using Package Manager Console
PM> Install-Package NTDTeam -Version 1.0.0
  • METHOD 1: Using Nuget Package Manager

<div align="center"> <a href="https://www.facebook.com/YanNguyenDev.Official"> <img src="nugetpackage.png"> </a> </div>

Usage

Step 1: Library declaration

using NTDTeam;

Step 2: Declare variable

 string email = "YanNguyenDevdemo@hotmail.com"; //Email Address That Turned ON IMAP
 string passemail = "PassDemo@2005"; //Password Of Email Above
 int timeout = 10; //Number Of Times To Check Mailboxes
 List<string> Mails = new List<string>; //Declare mailbox as list

Step 2: Use one of the following functions

  1. Read All Mails In Inbox:
 Mails = ReadMailIMAP.ReadAllInboxMails(email, passemail, timeout);
  1. Read All Unread Mails In Inbox:
Mails = ReadMailIMAP.ReadAllUnreadMails(email, passemail, timeout);
  1. Read All Mails In Junk (Spam):
Mails = ReadMailIMAP.ReadJunkMails(email, passemail, timeout);
  1. Read All Unread Mails In Junk (Spam):
Mails = ReadMailIMAP.ReadUnreadJunkMails(email, passemail, timeout);

Step 3: Export each email in the Mailbox

foreach (string mail in Mails)
{
  Console.WriteLine(mail);
}
  • Paypal: mindun94203@gmail.com - Nguyen Ngoc Tung Duong
  • VietTinBank: 106872826613 - Nguyen Ngoc Tung Duong
  • MBBank: 0090420032005 - Nguyen Ngoc Tung Duong
  • MOMO: 0917799104 - Nguyen Ngoc Tung Duong

Contacts

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  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.

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
1.0.0 295 11/16/2021

Summary of changes made in this release of the package.