PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
ablocks / vendor / storeengine / wordpress-sdk / views / insights-support-ticket-email.php

insights-support-ticket-email.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.14.0, at vendor/storeengine/wordpress-sdk/views/insights-support-ticket-email.php

21 lines 952 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5
6 // dynamic variable format __INPUT_NAME__
7
8 ?>
9 <div style="margin:10px auto">
10 <p style="margin:5px 0;"><strong>Website:</strong> <a href="__WEBSITE__" style="color:#008DFF;text-decoration:none" target="_blank">__WEBSITE__</a></p>
11 <p style="margin:5px 0;"><strong>Plugin:</strong> <span><?php echo $this->client->getPackageName() . ' (v.' . $this->client->getProjectVersion() . ')'; ?></span></p>
12 <p style="margin:5px 0;"><strong>Name:</strong> <span>__NAME__</span></p>
13 <p style="margin:5px 0;"><strong>Email:</strong> <span><a href="mailto:__EMAIL__" style="color:#008DFF;text-decoration:none">__EMAIL__</a></span></p>
14 <p style="margin:5px 0;"><strong>Subject:</strong> <span>__SUBJECT__</span></p>
15 </div>
16 <div style="margin:10px auto">
17 <h3 style="margin:5px 0;">Message:</h3>
18 <div style="margin-left:40px;padding-left:15px;border-left:4px solid #008DFF">__MESSAGE__</div>
19 </div>
20 <?php
21