package com.thefinestartist.wip;
import android.content.Intent;
import android.os.Build;
import com.thefinestartist.Base;
/**
* Created by TheFinestArtist
*/
public class EmailUtil {
// public static void sendSupportMail(String url) {
// Intent i = new Intent(Intent.ACTION_SEND);
// i.setType("message/rfc822");
// i.putExtra(Intent.EXTRA_EMAIL, new String[]{url});
// i.putExtra(Intent.EXTRA_SUBJECT, "[FEEDBACK] Android App (" + Build.VERSION.CODENAME + ")");
// i.putExtra(Intent.EXTRA_TEXT, "");
// try {
// Base.getContext().startActivity(Intent.createChooser(i, "Send Feedback"));
// } catch (android.content.ActivityNotFoundException e) {
// e.printStackTrace();
// }
// }
}