diff --git a/create_user_permission.module b/create_user_permission.module
index 76cf660..23c86e5 100644
--- a/create_user_permission.module
+++ b/create_user_permission.module
@@ -21,5 +21,5 @@ function create_user_permission_form_user_register_form_alter(&$form, FormStateI
     $form['account']['status']['#default_value'] = 1;
   }
   // Make it possible to send an email to the newly created user.
-  $form['account']['notify']['#access'] = \Drupal::currentUser()->hasPermission('create users');
+  //$form['account']['notify']['#access'] = \Drupal::currentUser()->hasPermission('create users');
 }
diff --git a/tests/src/FunctionalJavascript/CanNotifyTest.php b/tests/src/FunctionalJavascript/CanNotifyTest.php
new file mode 100644
index 0000000..478bb20
--- /dev/null
+++ b/tests/src/FunctionalJavascript/CanNotifyTest.php
@@ -0,0 +1,32 @@
+<?php
+
+namespace Drupal\Tests\create_user_permission\FunctionalJavascript;
+
+use Drupal\FunctionalJavascriptTests\JavascriptTestBase;
+
+/**
+ * Test that "create users" able users can notify users about the new account.
+ *
+ * @group create_user_permission
+ */
+class CanNotifyTest extends JavascriptTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = ['create_user_permission'];
+
+  /**
+   * Test that we can check the "notify user" checkbox.
+   */
+  public function testCanNotify() {
+    $create_user = $this->drupalCreateUser([
+      'create users',
+    ]);
+    $this->drupalLogin($create_user);
+    // Go to the add person page.
+    $this->drupalGet('admin/people/create');
+    // Check that the "notify" thing is available.
+    $this->assertTrue($this->getSession()->getPage()->find('css', '#edit-notify')->isVisible());
+  }
+}
