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

VB.NET UWP/WinRT 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

 

 

 

(VB.NET UWP/WinRT) Read iCloud Email Account using IMAP

Demonstrates how to set the IMAP settings for an iCloud email account and downloads the email from Inbox.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

' This example assumes Chilkat Imap to have been previously unlocked.
' See Unlock Imap for sample code.

Dim imap As New Chilkat.Imap

' Connect to the iCloud IMAP Mail Server
imap.Ssl = True
imap.Port = 993
Dim success As Boolean = Await imap.ConnectAsync("imap.mail.me.com")
If (success <> True) Then
    Debug.WriteLine(imap.LastErrorText)
    Exit Sub
End If


' The username is usually the name part of your iCloud email address 
' (for example, emilyparker, not emilyparker@icloud.com).
success = Await imap.LoginAsync("ICLOUD_USERNAME","ICLOUD_PASSWORD")
If (success <> True) Then
    Debug.WriteLine(imap.LastErrorText)
    Exit Sub
End If


' Select an IMAP folder/mailbox
success = Await imap.SelectMailboxAsync("Inbox")
If (success <> True) Then
    Debug.WriteLine(imap.LastErrorText)
    Exit Sub
End If


' Once the folder/mailbox is selected, the NumMessages property
' will contain the number of emails in the mailbox.
' Loop from 1 to NumMessages to fetch each email by sequence number.

Dim email As Chilkat.Email
Dim i As Integer
Dim n As Integer = imap.NumMessages
Dim bUid As Boolean = False
For i = 1 To n

    ' Download the email by sequence number.
    email = Await imap.FetchSingleAsync(i,bUid)
    If (imap.LastMethodSuccess <> True) Then
        Debug.WriteLine(imap.LastErrorText)
        Exit Sub
    End If


    Debug.WriteLine(i & ": " & email.From)
    Debug.WriteLine("    " & email.Subject)
    Debug.WriteLine("-")


Next


' Disconnect from the IMAP server.
success = Await imap.DisconnectAsync()

Debug.WriteLine("Success.")

' Sample output:

' 	1: iCloud <noreply@email.apple.com>
' 	    Welcome to iCloud Mail.
' 	-
' 	2: "Chilkat Software" <support@chilkatsoft.com>
' 	    This is a test
' 	-
' 	Success.

 

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