![]() |
Chilkat • HOME • Android™ • AutoIt • C • C# • C++ • Chilkat2-Python • CkPython • Classic ASP • DataFlex • Delphi DLL • Go • Java • Node.js • Objective-C • PHP Extension • Perl • PowerBuilder • PowerShell • PureBasic • Ruby • SQL Server • Swift • Tcl • Unicode C • Unicode C++ • VB.NET • VBScript • Visual Basic 6.0 • Visual FoxPro • Xojo Plugin
(Unicode C++) Process Bounced Email in IMAPNote: This example uses classes, properties, or methods discontinued in Chilkat v11.0.0 or greater. Reads an IMAP mailbox and determines which emails are bounces.
#include <CkImapW.h> #include <CkBounceW.h> #include <CkMessageSetW.h> #include <CkEmailBundleW.h> #include <CkEmailW.h> void ChilkatSample(void) { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkImapW imap; CkBounceW bounce; // Connect to an IMAP server. // Use TLS imap.put_Ssl(true); imap.put_Port(993); bool success = imap.Connect(L"imap.someMailServer.com"); if (success != true) { wprintf(L"%s\n",imap.lastErrorText()); return; } // Login success = imap.Login(L"admin@chilkatsoft.com",L"myPassword"); if (success != true) { wprintf(L"%s\n",imap.lastErrorText()); return; } // Select an IMAP mailbox success = imap.SelectMailbox(L"INBOX.bounceSamples"); if (success != true) { wprintf(L"%s\n",imap.lastErrorText()); return; } CkMessageSetW *messageSet = 0; // We can choose to fetch UIDs or sequence numbers. bool fetchUids = true; // Get the message IDs of all the emails in the mailbox messageSet = imap.Search(L"ALL",fetchUids); if (imap.get_LastMethodSuccess() == false) { wprintf(L"%s\n",imap.lastErrorText()); return; } // Fetch the emails into a bundle object: CkEmailBundleW *bundle = 0; bundle = imap.FetchBundle(*messageSet); if (imap.get_LastMethodSuccess() == false) { delete messageSet; wprintf(L"%s\n",imap.lastErrorText()); return; } // Loop over the bundle and display the FROM and SUBJECT of each. int i = 0; int numEmails = bundle->get_MessageCount(); while (i < numEmails) { CkEmailW *email = bundle->GetEmail(i); success = bounce.ExamineEmail(*email); wprintf(L"Subject: %s\n",email->subject()); wprintf(L"Bounce Type = %d, email address = %s\n",bounce.get_BounceType(),bounce.bounceAddress()); delete email; i = i + 1; } // Disconnect from the IMAP server. success = imap.Disconnect(); delete messageSet; delete bundle; } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.