Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) Load .eml and Examine the Structure, Attachments, and Related ItemsDemonstrates 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.
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 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"; CkMime mime = new CkMime(); boolean success = mime.LoadMimeFile(emlPath); if (success != true) { Log.i(TAG, mime.lastErrorText()); return; } Log.i(TAG, "---- MIME structure ----"); Log.i(TAG, mime.getStructure("text")); Log.i(TAG, "------------------------"); CkEmail email = new CkEmail(); 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. Log.i(TAG, "Email was Signed: " + String.valueOf(email.get_ReceivedSigned())); Log.i(TAG, "Email was Encrypted: " + String.valueOf(email.get_ReceivedEncrypted())); if (email.get_ReceivedSigned() == true) { Log.i(TAG, "Signature(s) valid = " + String.valueOf(email.get_SignaturesValid())); } if (email.get_ReceivedEncrypted() == true) { Log.i(TAG, "Decrypted successfully = " + String.valueOf(email.get_Decrypted())); } int i = 0; int numAttach = email.get_NumAttachments(); Log.i(TAG, "Number of attachments = " + String.valueOf(numAttach)); while (i < numAttach) { Log.i(TAG, "---- Attachment " + String.valueOf(i)); // Examine the filename (if any) Log.i(TAG, "filename: " + email.getAttachmentFilename(i)); // Examine the content-ID (if any) Log.i(TAG, "Content-ID: " + email.getAttachmentContentID(i)); // Examine the content-type Log.i(TAG, "Content-Type: " + email.getAttachmentContentType(i)); // Examine the content-disposition Log.i(TAG, "Content-Disposition" + email.getAttachmentHeader(i,"content-disposition")); // Examine the attachment size: Log.i(TAG, "Size (in bytes) of the attachment: " + String.valueOf(email.GetAttachmentSize(i))); i = i + 1; } Log.i(TAG, "--"); // 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.get_NumRelatedItems(); Log.i(TAG, "Number of related items = " + String.valueOf(numRelated)); i = 0; while (i < numRelated) { Log.i(TAG, "---- Related Item " + String.valueOf(i)); // Examine the filename (if any) Log.i(TAG, "filename: " + email.getRelatedFilename(i)); // Examine the content-ID (if any) Log.i(TAG, "Content-ID: " + email.getRelatedContentID(i)); // Examine the content-type Log.i(TAG, "Content-Type: " + email.getRelatedContentType(i)); // Examine the content-location (if any) Log.i(TAG, "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.get_NumAttachedMessages(); Log.i(TAG, "Number of attached messages = " + String.valueOf(numAttachedMessages)); i = 0; while (i < numAttachedMessages) { Log.i(TAG, "---- Attached message " + String.valueOf(i)); // Examine the attached email CkEmail em = email.GetAttachedMessage(i); Log.i(TAG, "from: " + em.ck_from()); Log.i(TAG, "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.get_NumReports(); i = 0; Log.i(TAG, "Number of reports = " + String.valueOf(numReports)); i = 0; while (i < numReports) { Log.i(TAG, "---- Report " + String.valueOf(i)); // Get the raw report data... Log.i(TAG, 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) { Log.i(TAG, "--- Delivery Status Information:"); Log.i(TAG, "Status: " + email.getDeliveryStatusInfo("Status")); Log.i(TAG, "Action: " + email.getDeliveryStatusInfo("Action")); Log.i(TAG, "Reporting-MTA: " + email.getDeliveryStatusInfo("Reporting-MTA")); CkStringArray sa = email.GetDsnFinalRecipients(); int numFinalRecipients = sa.get_Count(); i = 0; while (i < numFinalRecipients) { Log.i(TAG, "final recipient: " + sa.getString(i)); i = i + 1; } } } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.