Sample code for 30+ languages & platforms
Java

Make a Copy of an Email

See more Email Object Examples

Demonstrates the Chilkat Email.MakeCopy method, which copies the entire state of this email into another Email object — message content, recipients, headers, body representations, attachments, and related items. This example copies an email and reads a couple of fields from the copy.

Background: A deep copy gives you an independent duplicate: changes to one object do not affect the other. This is handy for template-and-tweak workflows — build a base message once, copy it per recipient, then vary only the recipient or a few fields — without risk of one send's edits bleeding into the next.

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 MakeCopy method, which copies the entire state of this email into
    //  another Email object -- message content, recipients, headers, bodies, attachments, and
    //  related items.

    CkEmail email = new CkEmail();
    email.put_Subject("Original");
    email.put_From("alice@example.com");
    email.AddTo("Bob","bob@example.com");
    email.put_Body("Original body.");

    //  Copy the entire email into a new Email object.
    CkEmail copy = new CkEmail();

    success = email.MakeCopy(copy);
    if (success == false) {
        System.out.println(email.lastErrorText());
        return;
        }

    System.out.println("Copy subject: " + copy.subject());
    System.out.println("Copy NumTo: " + copy.get_NumTo());
  }
}