Sample code for 30+ languages & platforms
Android™

Create Non-Multipart Email with XML Body that is an Attachment

See more SMTP Examples

Creates an email where the only body is a binary WAV file. The technique used in the example could be applied to other binary files, such as PDF, MS-WORD docs, Excel docs, etc.

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);

    boolean success = false;

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

    // The goal of this example is to create an email that has this MIME format,
    // where the body of the email is XML using base64 encoding, 
    // and the Content-Type and Content-Disposition are set as indicated.

    // Date: Wed, 23 Aug 2023 09:01:52 +0200 (CEST)
    // From: joe@example1.com
    // Subject: [v=EMCS.NL][a=NL****][k=****][s=0]
    // To: mary@example2.com
    // MIME-Version: 1.0
    // Content-Type: application/octet-stream; charset=us-ascii; name=6bd8dfe259b3a42c90a28a82b5fc6e77.txt
    // Content-Transfer-Encoding: Base64
    // Content-Disposition: attachment; filename=6bd8dfe259b3a42c90a28a82b5fc6e77.txt
    // Message-Id: <......>
    // 
    // <multi-line base64 encoded XML here>

    success = true;

    String xmlBody = "<ie:IE801 xmlns:ie=\"urn:publicid:-:EC:DGTAXUD:EMCS:PHASE4:IE801:V3.01\" xmlns:tms=\"urn:publicid:-:EC:DGTAXUD:EMCS:PHASE4:TMS:V3.01\">....</ie:IE801>";

    CkEmail email = new CkEmail();

    // Add subject, TO, FROM, etc.
    email.put_Subject("[v=EMCS.NL][a=NL****][k=****][s=0]");
    email.put_From("joe@example1.com");
    success = email.AddTo("Mary","mary@example2.com");

    email.put_Body(xmlBody);

    email.AddHeaderField("Content-Transfer-Encoding","Base64");
    email.AddHeaderField("Content-Type","application/octet-stream; charset=us-ascii; name=6bd8dfe259b3a42c90a28a82b5fc6e77.txt");
    email.AddHeaderField("Content-Disposition","attachment; filename=6bd8dfe259b3a42c90a28a82b5fc6e77.txt");

    // Your email is ready to send
    CkMailMan mailman = new CkMailMan();

    mailman.put_SmtpHost("smtp.my_mail_server.com");
    mailman.put_SmtpUsername("myUsername");
    mailman.put_SmtpPassword("myPassword");
    mailman.put_SmtpPort(465);
    mailman.put_SmtpSsl(true);
    mailman.put_StartTLS(true);

    success = mailman.SendEmail(email);
    if (success != true) {
        Log.i(TAG, mailman.lastErrorText());
        return;
        }

    success = mailman.CloseSmtpConnection();
    if (success != true) {
        Log.i(TAG, "Connection to SMTP server not closed cleanly.");
        }

    Log.i(TAG, "Mail Sent!");

  }

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