You can use:
putString (String key, Size value)
In the Origin Fragment before processing beginTransaction ()
Bundle args = new Bundle();
args.putString("email", email);
fragment.setArguments(args);
In the onCreateView of the destination Fragment you can get the / them and save them wherever you want.
String EMAIL = getArguments() != null ? getArguments().getString("email") : "[email protected]";
You can send more, as many as you need:
args.putString("email", email);
args.putString("nombre", nombre);
args.putString("edad", edad);
args.putString("sexo", sexo);
Of course you can also pass other types of data (String, int, float, etc)
See: link