There is one TextBox and a Button name as Verify in my form. In this text box I'm always going to insert email address, so my question is that whenever I enter any email address into TextBox it must check whether an Email Address Which I entered in exists or not. For example if I enter "abc09@gmail.com" then it must check on the gmail server weather this address is present or not
using System.Windows.Forms;
namespace email_verifier
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void verify_Click(object sender, EventArgs e)
{
}
}
}