Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created September 14, 2017 15:30
Show Gist options
  • Save barrykooij/f25a54d7f6dacc62f48b36aff7a1e180 to your computer and use it in GitHub Desktop.
Save barrykooij/f25a54d7f6dacc62f48b36aff7a1e180 to your computer and use it in GitHub Desktop.
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly
?>
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<style type="text/css">
html, body { padding: 0; margin: 0; background: #F5F5F5;}
body { padding: 25px; }
</style>
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0" align="center" width="500" style="font-family: Arial; font-size: 14px;">
<tr>
<td style="font-size: 16px; font-weight: bold; background-color: #459ac9; color: #fff; height: 50px; padding: 0 15px;-webkit-border-top-left-radius: 5px;-webkit-border-top-right-radius: 5px;-moz-border-radius-topleft: 5px;-moz-border-radius-topright: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;">
New Download on %WEBSITE_URL%!
</td>
</tr>
<tr>
<td style="padding: 25px 15px;background: #fff;-webkit-border-bottom-right-radius: 5px;-webkit-border-bottom-left-radius: 5px;-moz-border-radius-bottomright: 5px;-moz-border-radius-bottomleft: 5px;border-bottom-right-radius: 5px;border-bottom-left-radius: 5px;">
Hey there,<br/>
<br/>
Just wanted to let you know that <strong>%DOWNLOAD_NAME%</strong> has been downloaded!<br/>
<br/>
Download requester information:<br/>
<br/>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="300" style="font-weight: bold;" valign="top">User:</td>
<td valign="top">%USER%</td>
</tr>
<tr>
<td width="300" style="font-weight: bold;" valign="top">User Email:</td>
<td valign="top">%USER_EMAIL%</td>
</tr>
<tr>
<td width="300" style="font-weight: bold;" valign="top">IP Address:</td>
<td valign="top">%IP_ADDRESS%</td>
</tr>
<tr>
<td width="300" style="font-weight: bold;" valign="top">User Agent:</td>
<td valign="top">%USER_AGENT%</td>
</tr>
</table>
<br/>
That's all for now!<br/>
</br>
<em>~Your Download Monitor powered website</em>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment