# ablocks/2.14.0/templates/email/contact-email.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.14.0/code/templates/email/contact-email.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.14.0/raw/templates/email/contact-email.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.14.0/code/templates/email/contact-email.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">

			<div class="ablocks-entry-content">
				<p><?php echo wp_kses_post( $message ); ?></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' );

```
