Use Proxy to download emails

  • Автор темы Автор темы convict29
  • Дата начала Дата начала

convict29

Пользователь
Регистрация
10.07.2014
Сообщения
114
Реакции
3
Баллы
18
Hey im using this snippet to download all emails

Код:
Развернуть Свернуть Копировать
Tuple<string, string, string, string>[] allMails;
allMails = ZennoPoster.BulkMailDownload("username@gmail.com",
       "password", "imap.googlemail.com", 993, true,
       ZennoLab.InterfacesLibrary.Enums.Email.EmailProtocol.POP3,
       24*100, 1000, false);
// loop fo all messages
foreach(Tuple<string, string, string, string> tuple in allMails)
{
    // adding messages to the table called Tabl1
    // tuple.Item1 - sibject, tuple.Item2 - from, tuple.Item3 - html message, tuple.Item4 - text message
       List<string> tmp = new List<string>();
       tmp.Add(tuple.Item4);//body of the text message
       project.Tables["Tabl1"].AddRow(tmp);
}

How can i use private proxy to download the emails?
 
No, this method doesnt work with proxies
 
With the receive email action how can i use proxy to download emails?
 
It's not possible to use proxies with email actions
 

Кто просматривает тему: (Всего: 0, Пользователи: 0, Гости: 0)