Sample code for 30+ languages & platforms
Java

Remove a Single Attached Message from an Email

See more Email Object Examples

Demonstrates the Chilkat Email.RemoveAttachedMessage method, which removes the Nth message/rfc822 sub-part (an attached email) from the message. Indexing begins at 0. This example attaches an email, removes it, and prints the attached-message count before and after.

Background: Attached messages (forwarded emails carried as message/rfc822 parts) are counted and indexed separately from ordinary file attachments and related items. RemoveAttachedMessage targets just one nested email by index — useful, for example, when trimming a bundled digest or stripping a forwarded original before re-sending.

Chilkat Java Downloads

Java
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    boolean success = false;

    //  Demonstrates the RemoveAttachedMessage method, which removes the Nth message/rfc822
    //  sub-part (attached email) of the email.  The index is zero-based.

    //  Build an inner email and attach it to an outer email.
    CkEmail innerEmail = new CkEmail();
    innerEmail.put_Subject("Embedded message");
    innerEmail.put_From("alice@example.com");

    CkEmail email = new CkEmail();
    email.put_Subject("Has an attached message");
    success = email.AttachEmail(innerEmail);
    if (success == false) {
        System.out.println(email.lastErrorText());
        return;
        }

    System.out.println("NumAttachedMessages before = " + email.get_NumAttachedMessages());

    //  Remove the first attached message (index 0).
    email.RemoveAttachedMessage(0);

    System.out.println("NumAttachedMessages after = " + email.get_NumAttachedMessages());
  }
}