Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

Excel Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Excel) Copy Email from one IMAP Account to Another

Demonstrates how to copy the email in a mailbox from one account to another.

Download Excel Class Modules

Chilkat Excel Class Modules

Dim imapSrc As Chilkat.Imap
Set imapSrc = Chilkat.NewImap

' 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

success = imapSrc.Connect("MY-IMAP-DOMAIN")
If (success <> True) 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 <> True) Then
    Debug.Print imapSrc.LastErrorText
    Exit Sub
End If

Dim imapDest As Chilkat.Imap
Set imapDest = Chilkat.NewImap

' Connect to our destination IMAP server.
imapDest.Ssl = True
imapDest.Port = 993
success = imapDest.Connect("MY-IMAP-DOMAIN2")
If (success <> True) 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 <> True) 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 <> True) Then
    Debug.Print imapSrc.LastErrorText
    Exit Sub
End If


fetchUids = True

' Get the set of UIDs for all emails on the source server.

Set mset = imapSrc.Search("ALL",fetchUids)
If (imapSrc.LastMethodSuccess <> True) 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 Chilkat.FileAccess
Set fac = Chilkat.NewFileAccess
Dim msetAlreadyCopied As Chilkat.MessageSet
Set msetAlreadyCopied = Chilkat.NewMessageSet

strMsgSet = fac.ReadEntireTextFile("qa_cache/saAlreadyLoaded.txt","utf-8")
If (fac.LastMethodSuccess = True) Then
    Dim success As Boolean
    success = msetAlreadyCopied.FromCompactString(strMsgSet)
End If


numUids = mset.Count
Dim sbFlags As Chilkat.StringBuilder
Set sbFlags = Chilkat.NewStringBuilder


i = 0
Do While i < numUids

    ' If this UID was not already copied...

    uid = mset.GetId(i)
    If (Not msetAlreadyCopied.ContainsId(uid)) Then

        Debug.Print "copying "; uid; "..."

        ' Get the flags.

        flags = imapSrc.FetchFlags(uid,True)
        If (imapSrc.LastMethodSuccess = False) Then
            Debug.Print imapSrc.LastErrorText
            Exit Sub
        End If

        success = sbFlags.SetString(flags)

        ' Get the MIME of this email from the source.

        mimeStr = imapSrc.FetchSingleAsMime(uid,True)
        If (imapSrc.LastMethodSuccess = False) Then
            Debug.Print imapSrc.LastErrorText
            Exit Sub
        End If


        seen = sbFlags.Contains("\Seen",False)

        flagged = sbFlags.Contains("\Flagged",False)

        answered = sbFlags.Contains("\Answered",False)

        draft = sbFlags.Contains("\Draft",False)

        success = imapDest.AppendMimeWithFlags("Inbox",mimeStr,seen,flagged,answered,draft)
        If (success <> True) 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",False)
    End If

    i = i + 1
Loop

' Disconnect from the IMAP servers.
success = imapSrc.Disconnect()
success = imapDest.Disconnect()

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.