Sample code for 30+ languages & platforms
Android™

Example: MailMan.RenderToMime method

Demonstrates the RenderToMime method.

Chilkat Android™ Downloads

Android™
// 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);

    //  Create a simple email
    CkEmail email = new CkEmail();

    email.put_Subject("This is a test");
    email.put_Body("This is a test");

    email.put_From("Joe <joe@example.com>");
    email.AddTo("Mary","mary@example2.com");

    CkMailMan mailman = new CkMailMan();

    //  See the exact MIME of the email that would be sent
    //  if your application called SendEmail and passed in the email object.
    String renderedMime = mailman.renderToMime(email);

    Log.i(TAG, renderedMime);

    //  For this example, the rendered MIME looks like this:

    //  MIME-Version: 1.0
    //  Date: Fri, 27 Feb 2026 06:55:44 -0600
    //  Message-ID: <E4369AE94DE6CD7D08D4F15D95937F2A7FFC95E8@CHILKAT25>
    //  Content-Type: text/plain; charset=us-ascii; format=flowed
    //  Content-Transfer-Encoding: 7bit
    //  X-Priority: 3 (Normal)
    //  Subject: This is a test
    //  From: Joe <joe@example.com>
    //  To: Mary <mary@example2.com>
    //  
    //  This is a test

  }

  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."
  }
}