Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Android™ Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
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
Misc
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
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(Android™) 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 Android™ Downloads

Android™ Java Libraries

Android C/C++ Libraries

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