Android™
Android™
Create a Reply Email
See more Email Object Examples
Demonstrates the Chilkat Email.ToReply method, which generates a reply email with updated header and body fields so it can be sent as a reply. Attachments are excluded from the reply, but attached messages are included. The source email is not modified. This example creates a reply and prints its MIME.
Background: Replying is more than swapping sender and recipient: the
To is set from the original's reply address, the subject gets an Re: prefix, the original text is quoted, and threading headers (In-Reply-To, References) are added so mail clients group the conversation. ToReply assembles all of that, leaving a message you can edit and send. Dropping attachments is the usual reply convention — you rarely echo the sender's files back to them.Chilkat Android™ Downloads
// 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;
// Demonstrates the ToReply method, which generates a reply email with updated header and
// body fields ready to send as a reply. Attachments are excluded from the reply, but
// attached messages are included. The source email is not modified.
CkEmail email = new CkEmail();
email.put_Subject("Project update");
email.put_From("alice@example.com");
email.AddTo("Bob","bob@example.com");
email.put_Body("Here is the project update.");
// Create a reply email based on this message.
CkEmail reply = new CkEmail();
success = email.ToReply(reply);
if (success == false) {
Log.i(TAG, email.lastErrorText());
return true;
}
// The reply is addressed and quoted, ready to edit and send.
Log.i(TAG, reply.getMime());
}
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."
}
}