# ablocks/2.14.0/templates/verification/verification-success.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.14.0. 34 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.14.0/code/templates/verification/verification-success.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.14.0/raw/templates/verification/verification-success.php
- Modified: 2025-03-06T07:54:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ablocks/2.14.0/code/templates/verification/verification-success.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

	\ABlocks\Helper::get_template( 'email/template-header.php' );
?>
<div class="container">
	<div class="content"> 
		<div class="wrapper">
			<h5 class="main-heading">Thank you for subscribing with us!</h5>
			<div class="entry-content">
				<p>Thank you for verifying your email address.</p>
				<p><a href="<?php echo esc_url( home_url() ); ?>">Go to home page</a></p>
				<p>Your email has been successfully verified.If you have any questions, feel free to reach out to our support team.</p>
				<p>Best regards,<br><?php echo esc_attr( get_bloginfo( 'name' ) ); ?></p>
			</div>
			<div class="footer">
				&copy; <?php
					$url = wp_parse_url( get_bloginfo( 'url' ) );
					$host = isset( $url['host'] ) ? sanitize_text_field( $url['host'] ) : '';
					$port = isset( $url['port'] ) ? sanitize_text_field( (string) $url['port'] ) : '80';
					echo esc_html( $host . ':' . $port );
				?>
				<?php // echo wp_kses_post( $footer );
					// phpcs::ignore Squiz.PHP.CommentedOutCode.Found
				?>
			</div>
		</td>
	</div>
</div>
<?php
	\ABlocks\Helper::get_template( 'email/template-footer.php' );

```
