HFCIC.VerifyEmail
1.0.3
See the version list below for details.
dotnet add package HFCIC.VerifyEmail --version 1.0.3
NuGet\Install-Package HFCIC.VerifyEmail -Version 1.0.3
<PackageReference Include="HFCIC.VerifyEmail" Version="1.0.3" />
paket add HFCIC.VerifyEmail --version 1.0.3
#r "nuget: HFCIC.VerifyEmail, 1.0.3"
// Install HFCIC.VerifyEmail as a Cake Addin #addin nuget:?package=HFCIC.VerifyEmail&version=1.0.3 // Install HFCIC.VerifyEmail as a Cake Tool #tool nuget:?package=HFCIC.VerifyEmail&version=1.0.3
Using VerifyEmailAddress method can check if the email box exists on Microsoft of Google servers before you send email to. It very useful if you would like to reduce email sending bounce rate.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | 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. |
-
- ARSoft.Tools.Net (>= 2.2.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
First version.
Usage:
using System;
using VerifyEmailAddress;
namespace Test_NuGet
{
class Program
{
static void Main(string[] args)
{
string email = "someemail@domain.com";
VerifyEmail ve = new VerifyEmail();
// result could be OK -> email exists
// or BAD -> email doesn't exists
// or UNKNOWN -> couldn't verify email address
string result = ve.VerifyEmailAddress(email);
Console.WriteLine($"{email} is {result}");
Console.WriteLine("Press any key to exit!");
Console.ReadLine();
}
}
}