| 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 |
|