Check if Email Id exists in c# using TCPClient
In my last post, I shared code for checking if email Id exists or not using Sockets.
In this post, I will be using TCPClient to interact with Network Stream and reading the response returned by it using Stream Reader , and deciding on the email existence through the response code returned by host on our Network Stream.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void CheckEmailExists(string emailId) | |
{ | |
//This code checks if Email Id exists or not | |
string host = "gmail-smtp-in.l.google.com"; | |
// Create a TcpClient using the host name and port number of the remote host. This constructor will automatically attempt a connection. | |
TcpClient tClient = new TcpClient(host, 25); | |
byte[] dataBuffer; | |
string ctrl = "\r\n"; | |
NetworkStream netStream = tClient.GetStream(); //Used to send and receive data | |
//After you have obtained the NetworkStream, call the Write method to send data to the remote host. | |
//Call the Read method to receive data arriving from the remote host | |
StreamReader reader = new StreamReader(netStream); | |
string responseString = reader.ReadLine(); | |
dataBuffer = Encoding.ASCII.GetBytes("HELO WORLD" + ctrl); | |
netStream.Write(dataBuffer, 0, dataBuffer.Length); | |
responseString = reader.ReadLine(); | |
dataBuffer = Encoding.ASCII.GetBytes("MAIL FROM:<me@gmail.com>"+ctrl); | |
netStream.Write(dataBuffer, 0, dataBuffer.Length); | |
responseString = reader.ReadLine(); | |
dataBuffer = Encoding.ASCII.GetBytes("RCPT TO:<" + emailId + ">" + ctrl); | |
netStream.Write(dataBuffer, 0, dataBuffer.Length); | |
responseString = reader.ReadLine(); | |
if(responseString.Contains("250")) | |
{ | |
Response.Write("Email Id exists"); | |
} | |
else | |
{ | |
Response.Write("Doesn't exist"); | |
} | |
netStream.Close(); | |
tClient.Close(); | |
} |
- TCPClient : Just like Socket, it provides methods for connecting, sending and receiving stream data over a network. We have created TCPClient object using host name and port number of host. The constructor will itself attempt connection for TCPClient.
- GetStream() : Method to obtain NetworkStream. We can use Write and Read methods to send and receive response with the remote host.
It is no different from our previous approach. Using Sockets and TCPClient are doing the same thing, and as TCPClient is a wrapper around the Socket class, so there is no much performance difference.
Developer can opt for any approach.
In the next post :
- Sending Activation Link email to registered user