You can tailor the email notifications sent upon form submission in Gravity Forms. Here’s how to create a custom email template for better clarity.
add_filter('gform_notification', 'codebykp_custom_gform_notification', 10, 3);
function codebykp_custom_gform_notification($notification, $form, $entry) {
$notification['message'] = "New submission:\n\n" . print_r($entry, true);
return $notification;
}