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
(VB.NET UWP/WinRT) Copy Email from one IMAP Account to AnotherDemonstrates how to copy the email in a mailbox from one account to another.
Dim imapSrc As New Chilkat.Imap ' This example assumes Chilkat Imap to have been previously unlocked. ' See Unlock Imap for sample code. ' Connect to our source IMAP server. imapSrc.Ssl = True imapSrc.Port = 993 Dim success As Boolean = Await imapSrc.ConnectAsync("MY-IMAP-DOMAIN") If (success <> True) Then Debug.WriteLine(imapSrc.LastErrorText) Exit Sub End If ' Login to the source IMAP server success = Await imapSrc.LoginAsync("MY-IMAP-LOGIN","MY-IMAP-PASSWORD") If (success <> True) Then Debug.WriteLine(imapSrc.LastErrorText) Exit Sub End If Dim imapDest As New Chilkat.Imap ' Connect to our destination IMAP server. imapDest.Ssl = True imapDest.Port = 993 success = Await imapDest.ConnectAsync("MY-IMAP-DOMAIN2") If (success <> True) Then Debug.WriteLine(imapDest.LastErrorText) Exit Sub End If ' Login to the destination IMAP server success = Await imapDest.LoginAsync("MY-IMAP-LOGIN2","MY-IMAP-PASSWORD2") If (success <> True) Then Debug.WriteLine(imapDest.LastErrorText) Exit Sub End If ' Select a source IMAP mailbox on the source IMAP server success = Await imapSrc.SelectMailboxAsync("Inbox") If (success <> True) Then Debug.WriteLine(imapSrc.LastErrorText) Exit Sub End If Dim fetchUids As Boolean = True ' Get the set of UIDs for all emails on the source server. Dim mset As Chilkat.MessageSet = Await imapSrc.SearchAsync("ALL",fetchUids) If (imapSrc.LastMethodSuccess <> True) Then Debug.WriteLine(imapSrc.LastErrorText) Exit Sub End If ' Load the complete set of UIDs that were previously copied. ' We dont' want to copy any of these to the destination. Dim fac As New Chilkat.FileAccess Dim msetAlreadyCopied As New Chilkat.MessageSet Dim strMsgSet As String = fac.ReadEntireTextFile("qa_cache/saAlreadyLoaded.txt","utf-8") If (fac.LastMethodSuccess = True) Then msetAlreadyCopied.FromCompactString(strMsgSet) End If Dim numUids As Integer = mset.Count Dim sbFlags As New Chilkat.StringBuilder Dim i As Integer = 0 While i < numUids ' If this UID was not already copied... Dim uid As Integer = mset.GetId(i) If (Not msetAlreadyCopied.ContainsId(uid)) Then Debug.WriteLine("copying " & uid & "...") ' Get the flags. Dim flags As String = Await imapSrc.FetchFlagsAsync(uid,True) If (imapSrc.LastMethodSuccess = False) Then Debug.WriteLine(imapSrc.LastErrorText) Exit Sub End If sbFlags.SetString(flags) ' Get the MIME of this email from the source. Dim mimeStr As String = Await imapSrc.FetchSingleAsMimeAsync(uid,True) If (imapSrc.LastMethodSuccess = False) Then Debug.WriteLine(imapSrc.LastErrorText) Exit Sub End If Dim seen As Boolean = sbFlags.Contains("\Seen",False) Dim flagged As Boolean = sbFlags.Contains("\Flagged",False) Dim answered As Boolean = sbFlags.Contains("\Answered",False) Dim draft As Boolean = sbFlags.Contains("\Draft",False) success = Await imapDest.AppendMimeWithFlagsAsync("Inbox",mimeStr,seen,flagged,answered,draft) If (success <> True) Then Debug.WriteLine(imapDest.LastErrorText) Exit Sub End If ' Update msetAlreadyCopied with the uid just copied. msetAlreadyCopied.InsertId(uid) ' Save at every iteration just in case there's a failure.. strMsgSet = msetAlreadyCopied.ToCompactString() fac.WriteEntireTextFile("qa_cache/saAlreadyLoaded.txt",strMsgSet,"utf-8",False) End If i = i + 1 End While ' Disconnect from the IMAP servers. success = Await imapSrc.DisconnectAsync() success = Await imapDest.DisconnectAsync() |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.