Use this intent to take picture 
                Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                File f = new File(android.os.Environment.getExternalStorageDirectory(), AppInfo.getInstance().getCurrentLoginUserInfo().getId()+".jpg");
                intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
                intent.putExtra("return-data", true);
                startActivityForResult(intent, 1);
and on Your Activity Result....
Note Bitmap bitmap = getScaledBitmap(uri.getPath(), 200, true); 200 is your max image size.
if(requestCode == 1)
        {
String base = Environment.getExternalStorageDirectory().getAbsolutePath().toString();
            final String imgPath = base + "/" +AppInfo.getInstance().getCurrentLoginUserInfo().getId()+".jpg";
            File file = new File(imgPath);
            if (file.exists()) 
            {
                Uri uri = Uri.fromFile(file);
                Log.d(TAG, "Image Uri path: " + uri.getPath());
                Bitmap bitmap = getScaledBitmap(uri.getPath(), 200, true);
            }}
This method ll return image bitmap after resizing it-
private Bitmap getScaledBitmap(String imagePath, float maxImageSize, boolean filter) {
    FileInputStream in;
    BufferedInputStream buf;
    try {
        in = new FileInputStream(imagePath);
        buf = new BufferedInputStream(in);
        Bitmap realImage = BitmapFactory.decodeStream(buf);
        float ratio = Math.min(
                (float) maxImageSize / realImage.getWidth(),
                (float) maxImageSize / realImage.getHeight());
        int width = Math.round((float) ratio * realImage.getWidth());
        int height = Math.round((float) ratio * realImage.getHeight());
        Bitmap newBitmap = Bitmap.createScaledBitmap(realImage, width, height, filter);
        return newBitmap;
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return null;
}
Now you have scaled bitmap image and you can attach it in mail - 
read this -http://www.tutorialsbuzz.com/2014/02/send-mail-attachment-android-application.html
Hope this ll help you.