Thread.Sleep(5*1000); // пауза перед приемом
for (int i=0; i<2; i++){
Tuple<string, string, string, string>[] allMails;
allMails = ZennoPoster.BulkMailDownload("login", "password", proxyString: "proxy" ,lastHours: 2, deleteMessages: false);
foreach(Tuple<string, string, string, string> tuple in allMails)
{
// tuple.Item1 - sibject, tuple.Item2 - from, tuple.Item3 - html message, tuple.Item4 - text message
string data = "";
try{ data = Macros.TextProcessing.Regex(tuple.Item4, @"reg выражение", "0")[0].FirstOrDefault(); } catch{}
project.SendInfoToLog(data);
if (data!="") {
project.Variables["data"].Value = data;
return 0;
}
}
Thread.Sleep(1*1000); // пауза перед повтором
}
throw new Exception();