Visual Basic 6.0
Visual Basic 6.0
Copy Email from one IMAP Account to Another
See more IMAP Examples
Demonstrates how to copy the email in a mailbox from one account to another.Chilkat Visual Basic 6.0 Downloads
Dim success As Long
success = 0
Dim imapSrc As New ChilkatImap
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' Connect to our source IMAP server.
imapSrc.Ssl = 1
imapSrc.Port = 993
success = imapSrc.Connect("MY-IMAP-DOMAIN")
If (success <> 1) Then
Debug.Print imapSrc.LastErrorText
Exit Sub
End If
' Login to the source IMAP server
success = imapSrc.Login("MY-IMAP-LOGIN","MY-IMAP-PASSWORD")
If (success <> 1) Then
Debug.Print imapSrc.LastErrorText
Exit Sub
End If
Dim imapDest As New ChilkatImap
' Connect to our destination IMAP server.
imapDest.Ssl = 1
imapDest.Port = 993
success = imapDest.Connect("MY-IMAP-DOMAIN2")
If (success <> 1) Then
Debug.Print imapDest.LastErrorText
Exit Sub
End If
' Login to the destination IMAP server
success = imapDest.Login("MY-IMAP-LOGIN2","MY-IMAP-PASSWORD2")
If (success <> 1) Then
Debug.Print imapDest.LastErrorText
Exit Sub
End If
' Select a source IMAP mailbox on the source IMAP server
success = imapSrc.SelectMailbox("Inbox")
If (success <> 1) Then
Debug.Print imapSrc.LastErrorText
Exit Sub
End If
Dim fetchUids As Long
fetchUids = 1
' Get the set of UIDs for all emails on the source server.
Dim mset As MessageSet
Set mset = imapSrc.Search("ALL",fetchUids)
If (imapSrc.LastMethodSuccess <> 1) Then
Debug.Print 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 CkFileAccess
Dim msetAlreadyCopied As New MessageSet
Dim strMsgSet As String
strMsgSet = fac.ReadEntireTextFile("qa_cache/saAlreadyLoaded.txt","utf-8")
If (fac.LastMethodSuccess = 1) Then
success = msetAlreadyCopied.FromCompactString(strMsgSet)
End If
Dim numUids As Long
numUids = mset.Count
Dim sbFlags As New ChilkatStringBuilder
Dim i As Long
i = 0
Do While i < numUids
' If this UID was not already copied...
Dim uid As Long
uid = mset.GetId(i)
If (Not msetAlreadyCopied.ContainsId(uid)) Then
Debug.Print "copying " & uid & "..."
' Get the flags.
Dim flags As String
flags = imapSrc.FetchFlags(uid,1)
If (imapSrc.LastMethodSuccess = 0) Then
Debug.Print imapSrc.LastErrorText
Exit Sub
End If
success = sbFlags.SetString(flags)
' Get the MIME of this email from the source.
Dim mimeStr As String
mimeStr = imapSrc.FetchSingleAsMime(uid,1)
If (imapSrc.LastMethodSuccess = 0) Then
Debug.Print imapSrc.LastErrorText
Exit Sub
End If
Dim seen As Long
seen = sbFlags.Contains("\Seen",0)
Dim flagged As Long
flagged = sbFlags.Contains("\Flagged",0)
Dim answered As Long
answered = sbFlags.Contains("\Answered",0)
Dim draft As Long
draft = sbFlags.Contains("\Draft",0)
success = imapDest.AppendMimeWithFlags("Inbox",mimeStr,seen,flagged,answered,draft)
If (success <> 1) Then
Debug.Print 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()
success = fac.WriteEntireTextFile("qa_cache/saAlreadyLoaded.txt",strMsgSet,"utf-8",0)
End If
i = i + 1
Loop
' Disconnect from the IMAP servers.
success = imapSrc.Disconnect()
success = imapDest.Disconnect()