// Выбор imap папки с сообщениями
// Yandex
success = imap.SelectMailbox("Отправленные");
if (success != true) {
// Gmail.com - Ru
success = imap.SelectMailbox("[Gmail]/Отправленные");
if (success != true)
{
// Gmail.com - Eng
success = imap.SelectMailbox("[Gmail]/Sent");
if (success != true)
{
// Mail.ru
success = imap.SelectMailbox("Sent");
if (success != true)
{
this->Enabled = true;
return;
}
}
}
}