Chilkat  HOME  Android™  Classic ASP  C  C++  C#  Mono C#  .NET Core C#  C# UWP/WinRT  DataFlex  Delphi ActiveX  Delphi DLL  Visual FoxPro  Java  Lianja  MFC  Objective-C  Perl  PHP ActiveX  PHP Extension  PowerBuilder  PowerShell  PureBasic  CkPython  Chilkat2-Python  Ruby  SQL Server  Swift 2  Swift 3,4,5...  Tcl  Unicode C  Unicode C++  Visual Basic 6.0  VB.NET  VB.NET UWP/WinRT  VBScript  Xojo Plugin  Node.js  Excel  Go
| (MFC) IMAP Delete Old Email (before a specified date)Demonstrates how to delete email older than a particular date. 
 #include <CkImap.h> #include <CkMessageSet.h> #include <CkEmail.h> void ChilkatSample(void) { CkString strOut; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkImap imap; // Connect to an IMAP server. // Use TLS imap.put_Ssl(true); imap.put_Port(993); // Use your IMAP server domain. This example bool success = imap.Connect("my-imap-server-domain.com"); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Login success = imap.Login("myLogin","myPassword"); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Select an IMAP mailbox success = imap.SelectMailbox("Inbox"); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Get message ID's for emails older than 1/1/2018 CkMessageSet *messageSet = 0; bool fetchUids = true; messageSet = imap.Search("SENTBEFORE 01-Jan-2018",fetchUids); if (imap.get_LastMethodSuccess() == false) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // If desired, we can examine the Subject of each email to be deleted.. int i = 0; int count = messageSet->get_Count(); while (i < count) { CkEmail *email = imap.FetchSingleHeader(messageSet->GetId(i),true); if (imap.get_LastMethodSuccess() == true) { strOut.append(email->subject()); strOut.append("\r\n"); delete email; } i = i + 1; } // Set the Deleted flag for each message: success = imap.SetFlags(*messageSet,"Deleted",1); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); delete messageSet; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Expunge and close the mailbox. success = imap.ExpungeAndClose(); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); delete messageSet; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Disconnect from the IMAP server. success = imap.Disconnect(); delete messageSet; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } | ||||
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.