Index: src/wp-includes/functions.php
===================================================================
--- src/wp-includes/functions.php	(revision 75b61d650abcd7ad7133b3ac752bc8b5bb6f8e11)
+++ src/wp-includes/functions.php	(date 1593636757267)
@@ -1181,6 +1181,7 @@
 	$removable_query_args = array(
 		'activate',
 		'activated',
+		'admin_email_remind_later',
 		'approved',
 		'deactivate',
 		'deleted',
Index: src/wp-login.php
===================================================================
--- src/wp-login.php	(revision 75b61d650abcd7ad7133b3ac752bc8b5bb6f8e11)
+++ src/wp-login.php	(date 1593636757288)
@@ -612,6 +612,7 @@
 				update_option( 'admin_email_lifespan', time() + $remind_interval );
 			}
 
+			$redirect_to = add_query_arg( 'admin_email_remind_later', 1, $redirect_to );
 			wp_safe_redirect( $redirect_to );
 			exit;
 		}
Index: src/wp-admin/_index.php
===================================================================
--- src/wp-admin/_index.php	(revision 75b61d650abcd7ad7133b3ac752bc8b5bb6f8e11)
+++ src/wp-admin/_index.php	(date 1593637584643)
@@ -114,6 +114,35 @@
 <div class="wrap">
 	<h1><?php echo esc_html( $title ); ?></h1>
 
+	<?php
+	if ( ! empty( $_GET['admin_email_remind_later'] ) ) :
+		/** This filter is documented in wp-login.php */
+		$remind_interval = (int) apply_filters( 'admin_email_remind_interval', 3 * DAY_IN_SECONDS );
+		$postponed_time = get_option( 'admin_email_lifespan' );
+
+		/*
+		 * Calculate how many seconds it's been since the reminder was postponed.
+		 * This allows us to not show it if the query arg is set, but visited due to caches, bookmarks or similar.
+		 */
+		$time_passed = $postponed_time - $remind_interval - time();
+
+		// Only show the dashboard notice if it's been less than a minute since the message was postponed.
+		if ( $time_passed > -60 ) :
+		?>
+		<div class="notice notice-success is-dismissible">
+			<p>
+				<?php
+				printf(
+					/* translators: %1$s: The number of comments. %2$s: The post title. */
+					_n( 'The admin email verification page will reappear after %d day.', 'The admin email verification page will reappear after %d days.', 3 ),
+					number_format_i18n( 3 )
+				);
+				?>
+			</p>
+		</div>
+		<?php endif; ?>
+	<?php endif; ?>
+
 <?php
 if ( has_action( 'welcome_panel' ) && current_user_can( 'edit_theme_options' ) ) :
 	$classes = 'welcome-panel';
