/*
* Copyright 2010 Kevin Gaudin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.acra.sender;
import org.acra.ACRA;
import org.acra.CrashReportData;
import org.acra.ReportField;
import org.acra.annotation.ReportsCrashes;
import android.content.Context;
import android.content.Intent;
/**
* Send reports through an email intent. The user will be asked to chose his
* preferred email client. Included report fields can be defined using
* {@link ReportsCrashes#mailReportFields()}. Crash receiving mailbox has to be
* defined with {@link ReportsCrashes#mailTo()}.
*/
public class EmailIntentSender implements ReportSender {
Context mContext = null;
public EmailIntentSender(Context ctx) {
mContext = ctx;
}
@Override
public void send(CrashReportData errorContent) throws ReportSenderException {
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent.setType("text/plain");
String subject = errorContent.get(ReportField.PACKAGE_NAME) + " Crash Report";
String body = buildBody(errorContent);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, body);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] { ACRA.getConfig().mailTo() });
mContext.startActivity(emailIntent);
}
private String buildBody(CrashReportData errorContent) {
StringBuilder builder = new StringBuilder();
ReportField[] fields = ACRA.getConfig().customReportContent();
if(fields.length == 0) {
fields = ACRA.DEFAULT_MAIL_REPORT_FIELDS;
}
for (ReportField field : fields) {
builder.append(field.toString()).append("=");
builder.append(errorContent.get(field));
builder.append('\n');
}
return builder.toString();
}
}