Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Lianja) Fetch Oldest/Newest IMAP EmailEmails may be downloaded by sequence number. Assuming the selected mailbox is not empty, the oldest email is at sequence number 1, and the newest email is at sequence number N. The FetchSingle method may be used to download by sequence number.
// This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loImap = createobject("CkImap") // Connect to an IMAP server. // Use TLS loImap.Ssl = .T. loImap.Port = 993 llSuccess = loImap.Connect("mail.testemail.net") if (llSuccess <> .T.) then ? loImap.LastErrorText release loImap return endif // Login llSuccess = loImap.Login("***","***") if (llSuccess <> .T.) then ? loImap.LastErrorText release loImap return endif // Select an IMAP mailbox llSuccess = loImap.SelectMailbox("Inbox") if (llSuccess <> .T.) then ? loImap.LastErrorText release loImap return endif // After selecting a mailbox, the NumMessages property // contains the number of emails in the selected mailbox. n = loImap.NumMessages if (n > 0) then // The oldest email is always at sequence number 1. llIsUid = .F. loOldestEmail = loImap.FetchSingle(1,llIsUid) if (loImap.LastMethodSuccess = .T.) then // Display the From and Subject ? loOldestEmail.FromAddress ? loOldestEmail.Subject ? "--" release loOldestEmail endif // The newest email is at sequence number N: loNewestEmail = loImap.FetchSingle(n,llIsUid) if (loImap.LastMethodSuccess = .T.) then // Display the From and Subject ? loNewestEmail.FromAddress ? loNewestEmail.Subject release loNewestEmail endif endif // Disconnect from the IMAP server. llSuccess = loImap.Disconnect() release loImap |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.