diff --git a/core/includes/mail.inc b/core/includes/mail.inc
index 5c8117d..bd7f07b 100644
--- a/core/includes/mail.inc
+++ b/core/includes/mail.inc
@@ -476,7 +476,7 @@ function _drupal_wrap_mail_line(&$line, $key, $values) {
   }
   if (!$line_is_mime_header) {
     // Use soft-breaks only for purely quoted or unindented text.
-    $line = wordwrap($line, 77 - $values['length'], $values['soft'] ? "  \n" : "\n");
+    $line = wordwrap($line, 77 - $values['length'], $values['soft'] ? " \n" : "\n");
   }
   // Break really long words at the maximum width allowed.
   $line = wordwrap($line, 996 - $values['length'], $values['soft'] ? " \n" : "\n");
diff --git a/core/modules/system/lib/Drupal/system/Tests/Mail/WrapMailUnitTest.php b/core/modules/system/lib/Drupal/system/Tests/Mail/WrapMailUnitTest.php
index 9576981..3dd0269 100644
--- a/core/modules/system/lib/Drupal/system/Tests/Mail/WrapMailUnitTest.php
+++ b/core/modules/system/lib/Drupal/system/Tests/Mail/WrapMailUnitTest.php
@@ -40,7 +40,7 @@ function testDrupalWrapMail() {
     // 77 characters.
     $this->assertEqual($headers_in_body, $processed_headers, 'Headers in the body are not wrapped.');
     // Check that the body text is wrapped.
-    $this->assertEqual(wordwrap($body, 77, "  \n"), $processed_body, 'Body text is wrapped.');
+    $this->assertEqual(wordwrap($body, 77, " \n"), $processed_body, 'Body text is wrapped.');
   }
 }
 
