PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.6.42
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.6.42
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / resources / views / email / template / header.php

header.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.42, at resources/views/email/template/header.php

36 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Email Header
4 */
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit;
8 }
9 $email_heading = apply_filters('fluentform_email_template_email_heading', false, $form, $notification);
10 $headerImage = apply_filters('fluentform_email_template_header_image', false, $form, $notification);
11
12 ?>
13 <!DOCTYPE html>
14 <html dir="<?php echo is_rtl() ? 'rtl' : 'ltr'?>">
15 <head>
16 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
17 <meta name="x-apple-disable-message-reformatting" />
18 <title><?php echo get_bloginfo( 'name', 'display' ); ?></title>
19 </head>
20 <body <?php echo is_rtl() ? 'rightmargin' : 'leftmargin'; ?>="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
21 <div id="wrapper" dir="<?php echo is_rtl() ? 'rtl' : 'ltr'?>">
22 <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
23 <tr><td align="center" valign="top">
24 <div id="template_header_image">
25 <?php
26 if ( $headerImage ) {
27 echo '<p style="margin-top:0;"><img src="' . esc_url( $headerImage ) . '" alt="' . get_bloginfo( 'name', 'display' ) . '" /></p>';
28 }
29 ?>
30 </div>
31 <table border="0" cellpadding="0" cellspacing="0" width="600" id="template_container">
32 <?php if ( $email_heading ) { ?>
33 <tr><td align="center" valign="top"><table border="0" cellpadding="0" cellspacing="0" width="600" id="template_header"><tr><td id="header_wrapper"><h1><?php echo $email_heading; ?></h1></td></tr></table></td></tr>
34 <?php } ?>
35 <tr><td align="center" valign="top"><table border="0" cellpadding="0" cellspacing="0" width="600" id="template_body"><tr><td valign="top" id="body_content"><table border="0" cellpadding="20" cellspacing="0" width="100%"><tr><td valign="top"><div id="body_content_inner">
36