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) Load .eml and Examine the Structure, Attachments, and Related Items

Demonstrates how to load examine the MIME structure of a .eml, and also examine the attachment and related item filenames, attached messages, and multipart/report and DSN information.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

string emlPath = "C:/AAWorkarea/beatrix/roesner.eml";

Chilkat.Mime mime = new Chilkat.Mime();

bool success = mime.LoadMimeFile(emlPath);
if (success != true) {
    Debug.WriteLine(mime.LastErrorText);
    return;
}

Debug.WriteLine("---- MIME structure ----");
Debug.WriteLine(mime.GetStructure("text"));
Debug.WriteLine("------------------------");

Chilkat.Email email = new Chilkat.Email();
success = email.LoadEml(emlPath);

// Was this a signed and/or encrypted email?
// If so, then loading the .eml automatically unwraps
// (i.e. verifies signatures and decrypts) and the resultant
// email is what existed prior to signing/encrypting.
Debug.WriteLine("Email was Signed: " + Convert.ToString(email.ReceivedSigned));
Debug.WriteLine("Email was Encrypted: " + Convert.ToString(email.ReceivedEncrypted));
if (email.ReceivedSigned == true) {
    Debug.WriteLine("Signature(s) valid = " + Convert.ToString(email.SignaturesValid));
}

if (email.ReceivedEncrypted == true) {
    Debug.WriteLine("Decrypted successfully = " + Convert.ToString(email.Decrypted));
}

int i = 0;
int numAttach = email.NumAttachments;
Debug.WriteLine("Number of attachments = " + Convert.ToString(numAttach));

while (i < numAttach) {
    Debug.WriteLine("---- Attachment " + Convert.ToString(i));

    // Examine the filename (if any)
    Debug.WriteLine("filename: " + email.GetAttachmentFilename(i));
    // Examine the content-ID (if any)
    Debug.WriteLine("Content-ID: " + email.GetAttachmentContentID(i));
    // Examine the content-type
    Debug.WriteLine("Content-Type: " + email.GetAttachmentContentType(i));
    // Examine the content-disposition
    Debug.WriteLine("Content-Disposition" + email.GetAttachmentHeader(i,"content-disposition"));
    // Examine the attachment size:
    Debug.WriteLine("Size (in bytes) of the attachment: " + Convert.ToString(email.GetAttachmentSize(i)));

    i = i + 1;
}

Debug.WriteLine("--");

// Now for the related items.

// Note: A MIME sub-part can potentially be both a related item AND an attachment.
// The typical case is when the item is contained under the multipart/related enclosure and 
// the item also has a "Content-Disposition" header indicating "attachment".
// The location within multipart/related makes it a "related item", yet the Content-Disposition can also make it semantically an attachment.
// Related items and attachments are not necessarily mutually exclusive.

int numRelated = email.NumRelatedItems;
Debug.WriteLine("Number of related items = " + Convert.ToString(numRelated));
i = 0;
while (i < numRelated) {
    Debug.WriteLine("---- Related Item " + Convert.ToString(i));

    // Examine the filename (if any)
    Debug.WriteLine("filename: " + email.GetRelatedFilename(i));
    // Examine the content-ID (if any)
    Debug.WriteLine("Content-ID: " + email.GetRelatedContentID(i));
    // Examine the content-type
    Debug.WriteLine("Content-Type: " + email.GetRelatedContentType(i));
    // Examine the content-location (if any)
    Debug.WriteLine("Content-Location" + email.GetRelatedContentLocation(i));

    i = i + 1;
}

// The email could also have attached messages.
// An attached message is another email that was attached to this email.
int numAttachedMessages = email.NumAttachedMessages;
Debug.WriteLine("Number of attached messages = " + Convert.ToString(numAttachedMessages));
i = 0;
while (i < numAttachedMessages) {
    Debug.WriteLine("---- Attached message " + Convert.ToString(i));

    // Examine the attached email
    Chilkat.Email em = email.GetAttachedMessage(i);
    Debug.WriteLine("from: " + em.From);
    Debug.WriteLine("subject: " + em.Subject);

    i = i + 1;
}

// An email could also be a multipart/report email. 
// This is a DSN (Delivery Status Notification)
// The NumReports property indicates how many "reports" exist.
int numReports = email.NumReports;
i = 0;
Debug.WriteLine("Number of reports = " + Convert.ToString(numReports));
i = 0;
while (i < numReports) {
    Debug.WriteLine("---- Report " + Convert.ToString(i));
    // Get the raw report data...
    Debug.WriteLine(email.GetReport(i));
    i = i + 1;
}

// If the email is a multipart/report, then the information
// from the message/delivery-status part of the email can be retrieved:
if (email.IsMultipartReport() == true) {

    Debug.WriteLine("--- Delivery Status Information:");
    Debug.WriteLine("Status: " + email.GetDeliveryStatusInfo("Status"));
    Debug.WriteLine("Action: " + email.GetDeliveryStatusInfo("Action"));
    Debug.WriteLine("Reporting-MTA: " + email.GetDeliveryStatusInfo("Reporting-MTA"));

    Chilkat.StringArray sa = email.GetDsnFinalRecipients();
    int numFinalRecipients = sa.Count;
    i = 0;
    while (i < numFinalRecipients) {
        Debug.WriteLine("final recipient: " + sa.GetString(i));
        i = i + 1;
    }

}


 

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