SmtpMail oMail = new SmtpMail("TryIt"); 
SmtpClient oSmtp = new SmtpClient(); 
oMail->From = "thor-no-reply@targethospitality.com;
oMail->To = "does-not-exist@nextwavesoftware.com"; 
SmtpServer oServer = new SmtpServer(""); 
try 
{ 
    oSmtp->TestRecipients(oServer, oMail); 
    Console::WriteLine("email address was verified!"); 
} 
catch (Exception ep) 
{ 
    Console::WriteLine("failed to test email address with the following error:"); 
    Console::WriteLine(ep->Message); 
}