Hey bkarun, to wait for a particular email (web element) you can try something like this:
WebDriverWait wait = new WebDriverWait(webDriver, timeoutInSeconds); //5 mins or 15 mins
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id<locator>));
elementLocated.click()