/*
* 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.ACRAConstants;
import org.acra.collector.CrashReportData;
import org.acra.ReportField;
import org.acra.annotation.ReportsCrashes;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
/**
* 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 org.acra.annotation.ReportsCrashes#customReportContent()}. Crash receiving mailbox has to be
* defined with {@link ReportsCrashes#mailTo()}.
*/
public class EmailIntentSender implements ReportSender {
private final Context mContext;
public EmailIntentSender(Context ctx) {
mContext = ctx;
}
@Override
public void send(Context context, CrashReportData errorContent) throws ReportSenderException {
final String subject = mContext.getPackageName() + " Crash Report";
final String body = buildBody(errorContent);
final Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
emailIntent.setData(Uri.fromParts("mailto", ACRA.getConfig().mailTo(), null));
emailIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
emailIntent.putExtra(Intent.EXTRA_TEXT, body);
mContext.startActivity(emailIntent);
}
private String buildBody(CrashReportData errorContent) {
ReportField[] fields = ACRA.getConfig().customReportContent();
if(fields.length == 0) {
fields = ACRAConstants.DEFAULT_MAIL_REPORT_FIELDS;
}
final StringBuilder builder = new StringBuilder();
for (ReportField field : fields) {
builder.append(field.toString()).append("=");
builder.append(errorContent.get(field));
builder.append('\n');
}
return builder.toString();
}
}