| 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><strong>Website:</strong> <a href="__WEBSITE__" target="_blank">__WEBSITE__</a></p> |
| 11 |
<p><strong>Plugin:</strong> <span><?php echo $this->client->getPackageName() . ' (v.' . $this->client->getProjectVersion() . ')'; ?></span></p> |
| 12 |
<p><strong>Name:</strong> <span>__NAME__</span></p> |
| 13 |
<p><strong>Email:</strong> <span>__EMAIL__</span></p> |
| 14 |
<p><strong>Subject:</strong> <span>__SUBJECT__</span></p> |
| 15 |
</div> |
| 16 |
<div style="margin:10px auto"> |
| 17 |
<h3>Message:</h3> |
| 18 |
<div>__MESSAGE__</div> |
| 19 |
</div> |
| 20 |
<?php |
| 21 |
|