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

C# 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

 

 

 

(C# 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.

Chilkat.Imap imap = new Chilkat.Imap();

// Connect to the iCloud IMAP Mail Server
imap.Ssl = true;
imap.Port = 993;
bool success = await imap.ConnectAsync("imap.mail.me.com");
if (success != true) {
    Debug.WriteLine(imap.LastErrorText);
    return;
}

// 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) {
    Debug.WriteLine(imap.LastErrorText);
    return;
}

// Select an IMAP folder/mailbox
success = await imap.SelectMailboxAsync("Inbox");
if (success != true) {
    Debug.WriteLine(imap.LastErrorText);
    return;
}

// 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.

Chilkat.Email email = null;
int i;
int n = imap.NumMessages;
bool bUid = false;
for (i = 1; i <= n; i++) {

    // Download the email by sequence number.
    email = await imap.FetchSingleAsync(i,bUid);
    if (imap.LastMethodSuccess != true) {
        Debug.WriteLine(imap.LastErrorText);
        return;
    }

    Debug.WriteLine(Convert.ToString(i) + ": " + email.From);
    Debug.WriteLine("    " + email.Subject);
    Debug.WriteLine("-");

}

// 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.