-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsharp-email-validation-sample.cs
69 lines (62 loc) · 3.06 KB
/
csharp-email-validation-sample.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// create a free acount at https://app.sendbridge.com/signup
// and get your own API key
// more info in integration https://sendbridge.com/email-validation-api
// Please make sure to include the Newtonsoft.Json namespace and install
// the Newtonsoft.Json NuGet package if it is not already installed in your
// project. Also, please note that the dynamic object used for deserialization
// can be replaced with strongly-typed classes based on the structure of the
// JSON response for better type safety.
using System;
using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json;
class Program
{
static async Task Main()
{
string apiUrl = "https://api.sendbridge.com/v1/validate/hLxD5h0erBiqmPRbkrjJu4WBdRJI9lMi/[email protected]";
using (var httpClient = new HttpClient())
{
try
{
HttpResponseMessage response = await httpClient.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
// Deserialize the JSON response into a dynamic object
dynamic jsonResponse = JsonConvert.DeserializeObject(responseBody);
// Extract data from the dynamic object
string email = jsonResponse.email;
bool freemail = jsonResponse.freemail;
bool validSyntax = jsonResponse.valid_syntax;
bool abnormalLocalPart = jsonResponse.abnormal_local_part;
bool abnormalDomain = jsonResponse.abnormal_domain;
bool localPartTooLong = jsonResponse.local_part_too_long;
bool shared = jsonResponse.shared;
bool validTld = jsonResponse.valid_tld;
bool disposable = jsonResponse.disposable;
bool mxValid = jsonResponse.mx_valid;
string aValid = jsonResponse.a_valid;
int score = jsonResponse.score;
string timeTaken = jsonResponse.time_taken;
// Display extracted data
Console.WriteLine("Email: " + email);
Console.WriteLine("Freemail: " + freemail);
Console.WriteLine("Valid Syntax: " + validSyntax);
Console.WriteLine("Abnormal Local Part: " + abnormalLocalPart);
Console.WriteLine("Abnormal Domain: " + abnormalDomain);
Console.WriteLine("Local Part Too Long: " + localPartTooLong);
Console.WriteLine("Shared: " + shared);
Console.WriteLine("Valid TLD: " + validTld);
Console.WriteLine("Disposable: " + disposable);
Console.WriteLine("MX Valid: " + mxValid);
Console.WriteLine("A Valid: " + aValid);
Console.WriteLine("Score: " + score);
Console.WriteLine("Time Taken: " + timeTaken);
}
catch (Exception ex)
{
Console.WriteLine($"Error: {ex.Message}");
}
}
}
}