# ablocks/2.9.0/templates/email/email-verify.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.9.0/code/templates/email/email-verify.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.0/raw/templates/email/email-verify.php
- Modified: 2026-01-11T10:59:34+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.9.0/code/templates/email/email-verify.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

\ABlocks\Helper::get_template( 'email/template-header.php' );
?>
<div class="ablocks-container">
	<div class="ablocks-content">
		<div class="ablocks-wrapper">

			<h5 class="ablocks-main-heading">
				<?php esc_html_e( 'Email verification', 'ablocks' ); ?>
			</h5>

			<div class="ablocks-entry-content">
				<p>
					<?php esc_html_e( 'Hello', 'ablocks' ); ?>
					<?php echo esc_html( $email ); ?>,
				</p>

				<p>
					<?php esc_html_e( 'Thank you for registering with us. Please click the link below to verify your email address:', 'ablocks' ); ?>
				</p>

				<p>
					<a href="<?php echo esc_url( $url ); ?>">
						<?php esc_html_e( 'Verify Your Email', 'ablocks' ); ?>
					</a>
				</p>

				<p><?php esc_html_e( 'If you did not register, please ignore this email.', 'ablocks' ); ?></p>

				<p>
					<?php esc_html_e( 'Best regards', 'ablocks' ); ?>,<br>
					<?php echo esc_html( get_bloginfo( 'name' ) ); ?>
				</p>
			</div>

			<div class="ablocks-footer">
				&copy;
				<?php
				$site_url = wp_parse_url( get_bloginfo( 'url' ) );

				if ( ! empty( $site_url['host'] ) ) {
					echo esc_html( $site_url['host'] );

					if ( ! empty( $site_url['port'] ) ) {
						echo ':' . esc_html( $site_url['port'] );
					}
				}
				?>
			</div>

		</div>
	</div>
</div>
<?php
\ABlocks\Helper::get_template( 'email/template-footer.php' );

```
